mirror of
https://github.com/streamyfin/streamyfin.git
synced 2025-08-20 18:37:18 +02:00
88 lines
2.5 KiB
TypeScript
88 lines
2.5 KiB
TypeScript
import ios12 from "@/utils/profiles/ios12";
|
|
import { Api } from "@jellyfin/sdk";
|
|
import {
|
|
BaseItemDto,
|
|
PlaybackInfoResponse,
|
|
MediaSourceInfo,
|
|
} from "@jellyfin/sdk/lib/generated-client/models";
|
|
|
|
export const getStreamUrl = async ({
|
|
api,
|
|
item,
|
|
userId,
|
|
startTimeTicks = 0,
|
|
maxStreamingBitrate,
|
|
sessionData,
|
|
deviceProfile = ios12,
|
|
}: {
|
|
api: Api | null | undefined;
|
|
item: BaseItemDto | null | undefined;
|
|
userId: string | null | undefined;
|
|
startTimeTicks: number;
|
|
maxStreamingBitrate?: number;
|
|
sessionData: PlaybackInfoResponse;
|
|
deviceProfile: any;
|
|
}) => {
|
|
if (!api || !userId || !item?.Id) {
|
|
return null;
|
|
}
|
|
|
|
const itemId = item.Id;
|
|
|
|
const response = await api.axiosInstance.post(
|
|
`${api.basePath}/Items/${itemId}/PlaybackInfo`,
|
|
{
|
|
DeviceProfile: deviceProfile,
|
|
UserId: userId,
|
|
MaxStreamingBitrate: maxStreamingBitrate,
|
|
StartTimeTicks: startTimeTicks,
|
|
EnableTranscoding: maxStreamingBitrate ? true : undefined,
|
|
AutoOpenLiveStream: true,
|
|
MediaSourceId: itemId,
|
|
AllowVideoStreamCopy: maxStreamingBitrate ? false : true,
|
|
},
|
|
{
|
|
headers: {
|
|
Authorization: `MediaBrowser DeviceId="${api.deviceInfo.id}", Token="${api.accessToken}"`,
|
|
},
|
|
},
|
|
);
|
|
|
|
const mediaSource = response.data.MediaSources?.[0] as MediaSourceInfo;
|
|
|
|
if (!mediaSource) {
|
|
throw new Error("No media source");
|
|
}
|
|
if (!sessionData.PlaySessionId) {
|
|
throw new Error("no PlaySessionId");
|
|
}
|
|
|
|
if (mediaSource.SupportsDirectPlay) {
|
|
if (item.MediaType === "Video") {
|
|
console.log("Using direct stream for video!");
|
|
return `${api.basePath}/Videos/${itemId}/stream.mp4?playSessionId=${sessionData.PlaySessionId}&mediaSourceId=${itemId}&static=true`;
|
|
} else if (item.MediaType === "Audio") {
|
|
console.log("Using direct stream for audio!");
|
|
const searchParams = new URLSearchParams({
|
|
UserId: userId,
|
|
DeviceId: api.deviceInfo.id,
|
|
MaxStreamingBitrate: "140000000",
|
|
Container:
|
|
"opus,webm|opus,mp3,aac,m4a|aac,m4b|aac,flac,webma,webm|webma,wav,ogg",
|
|
TranscodingContainer: "mp4",
|
|
TranscodingProtocol: "hls",
|
|
AudioCodec: "aac",
|
|
api_key: api.accessToken,
|
|
PlaySessionId: sessionData.PlaySessionId,
|
|
StartTimeTicks: "0",
|
|
EnableRedirection: "true",
|
|
EnableRemoteMedia: "false",
|
|
});
|
|
return `${api.basePath}/Audio/${itemId}/universal?${searchParams.toString()}`;
|
|
}
|
|
}
|
|
|
|
console.log("Using transcoded stream!");
|
|
return `${api.basePath}${mediaSource.TranscodingUrl}`;
|
|
};
|