Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Video-Downloader/api/src/stream/internal-hls.js
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
73 lines (57 sloc)
2.13 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import HLS from "hls-parser"; | |
import { createInternalStream } from "./manage.js"; | |
function getURL(url) { | |
try { | |
return new URL(url); | |
} catch { | |
return null; | |
} | |
} | |
function transformObject(streamInfo, hlsObject) { | |
if (hlsObject === undefined) { | |
return (object) => transformObject(streamInfo, object); | |
} | |
let fullUrl; | |
if (getURL(hlsObject.uri)) { | |
fullUrl = new URL(hlsObject.uri); | |
} else { | |
fullUrl = new URL(hlsObject.uri, streamInfo.url); | |
} | |
if (fullUrl.hostname !== '127.0.0.1') { | |
hlsObject.uri = createInternalStream(fullUrl.toString(), streamInfo); | |
if (hlsObject.map) { | |
hlsObject.map = transformObject(streamInfo, hlsObject.map); | |
} | |
} | |
return hlsObject; | |
} | |
function transformMasterPlaylist(streamInfo, hlsPlaylist) { | |
const makeInternalStream = transformObject(streamInfo); | |
const makeInternalVariants = (variant) => { | |
variant = transformObject(streamInfo, variant); | |
variant.video = variant.video.map(makeInternalStream); | |
variant.audio = variant.audio.map(makeInternalStream); | |
return variant; | |
}; | |
hlsPlaylist.variants = hlsPlaylist.variants.map(makeInternalVariants); | |
return hlsPlaylist; | |
} | |
function transformMediaPlaylist(streamInfo, hlsPlaylist) { | |
const makeInternalSegments = transformObject(streamInfo); | |
hlsPlaylist.segments = hlsPlaylist.segments.map(makeInternalSegments); | |
hlsPlaylist.prefetchSegments = hlsPlaylist.prefetchSegments.map(makeInternalSegments); | |
return hlsPlaylist; | |
} | |
const HLS_MIME_TYPES = ["application/vnd.apple.mpegurl", "audio/mpegurl", "application/x-mpegURL"]; | |
export function isHlsResponse (req) { | |
return HLS_MIME_TYPES.includes(req.headers['content-type']); | |
} | |
export async function handleHlsPlaylist(streamInfo, req, res) { | |
let hlsPlaylist = await req.body.text(); | |
hlsPlaylist = HLS.parse(hlsPlaylist); | |
hlsPlaylist = hlsPlaylist.isMasterPlaylist | |
? transformMasterPlaylist(streamInfo, hlsPlaylist) | |
: transformMediaPlaylist(streamInfo, hlsPlaylist); | |
hlsPlaylist = HLS.stringify(hlsPlaylist); | |
res.send(hlsPlaylist); | |
} |