134 lines
4.8 KiB
JavaScript
134 lines
4.8 KiB
JavaScript
import globalize from '../scripts/globalize';
|
|
|
|
export function getVideoQualityOptions(options) {
|
|
const maxStreamingBitrate = options.currentMaxBitrate;
|
|
let videoWidth = options.videoWidth;
|
|
const videoHeight = options.videoHeight;
|
|
|
|
// If the aspect ratio is less than 16/9 (1.77), set the width as if it were pillarboxed.
|
|
// 4:3 1440x1080 -> 1920x1080
|
|
if (videoWidth / videoHeight < 16 / 9) {
|
|
videoWidth = videoHeight * (16 / 9);
|
|
}
|
|
|
|
const maxAllowedWidth = videoWidth || 4096;
|
|
|
|
const qualityOptions = [];
|
|
|
|
const autoQualityOption = {
|
|
name: globalize.translate('Auto'),
|
|
bitrate: 0,
|
|
selected: options.isAutomaticBitrateEnabled
|
|
};
|
|
|
|
if (options.enableAuto) {
|
|
qualityOptions.push(autoQualityOption);
|
|
}
|
|
|
|
// Quality options are indexed by bitrate. If you must duplicate them, make sure each of them are unique (by making the last digit a 1)
|
|
if (maxAllowedWidth >= 3800) {
|
|
qualityOptions.push({ name: '4K - 120 Mbps', maxHeight: 2160, bitrate: 120000000 });
|
|
qualityOptions.push({ name: '4K - 80 Mbps', maxHeight: 2160, bitrate: 80000000 });
|
|
}
|
|
// Some 1080- videos are reported as 1912?
|
|
if (maxAllowedWidth >= 1900) {
|
|
qualityOptions.push({ name: '1080p - 60 Mbps', maxHeight: 1080, bitrate: 60000000 });
|
|
qualityOptions.push({ name: '1080p - 40 Mbps', maxHeight: 1080, bitrate: 40000000 });
|
|
qualityOptions.push({ name: '1080p - 20 Mbps', maxHeight: 1080, bitrate: 20000000 });
|
|
qualityOptions.push({ name: '1080p - 15 Mbps', maxHeight: 1080, bitrate: 15000000 });
|
|
qualityOptions.push({ name: '1080p - 10 Mbps', maxHeight: 1080, bitrate: 10000000 });
|
|
}
|
|
if (maxAllowedWidth >= 1260) {
|
|
qualityOptions.push({ name: '720p - 8 Mbps', maxHeight: 720, bitrate: 8000000 });
|
|
qualityOptions.push({ name: '720p - 6 Mbps', maxHeight: 720, bitrate: 6000000 });
|
|
qualityOptions.push({ name: '720p - 4 Mbps', maxHeight: 720, bitrate: 4000000 });
|
|
}
|
|
if (maxAllowedWidth >= 620) {
|
|
qualityOptions.push({ name: '480p - 3 Mbps', maxHeight: 480, bitrate: 3000000 });
|
|
qualityOptions.push({ name: '480p - 1.5 Mbps', maxHeight: 480, bitrate: 1500000 });
|
|
qualityOptions.push({ name: '480p - 720 kbps', maxHeight: 480, bitrate: 720000 });
|
|
}
|
|
|
|
qualityOptions.push({ name: '360p - 420 kbps', maxHeight: 360, bitrate: 420000 });
|
|
|
|
if (maxStreamingBitrate) {
|
|
let selectedIndex = -1;
|
|
for (let i = 0, length = qualityOptions.length; i < length; i++) {
|
|
const option = qualityOptions[i];
|
|
|
|
if (selectedIndex === -1 && option.bitrate <= maxStreamingBitrate) {
|
|
selectedIndex = i;
|
|
}
|
|
}
|
|
|
|
if (selectedIndex === -1) {
|
|
selectedIndex = qualityOptions.length - 1;
|
|
}
|
|
|
|
const currentQualityOption = qualityOptions[selectedIndex];
|
|
|
|
if (!options.isAutomaticBitrateEnabled) {
|
|
currentQualityOption.selected = true;
|
|
} else {
|
|
autoQualityOption.autoText = currentQualityOption.name;
|
|
}
|
|
}
|
|
|
|
return qualityOptions;
|
|
}
|
|
|
|
export function getAudioQualityOptions(options) {
|
|
const maxStreamingBitrate = options.currentMaxBitrate;
|
|
|
|
const qualityOptions = [];
|
|
|
|
const autoQualityOption = {
|
|
name: globalize.translate('Auto'),
|
|
bitrate: 0,
|
|
selected: options.isAutomaticBitrateEnabled
|
|
};
|
|
|
|
if (options.enableAuto) {
|
|
qualityOptions.push(autoQualityOption);
|
|
}
|
|
|
|
qualityOptions.push({ name: '2 Mbps', bitrate: 2000000 });
|
|
qualityOptions.push({ name: '1.5 Mbps', bitrate: 1500000 });
|
|
qualityOptions.push({ name: '1 Mbps', bitrate: 1000000 });
|
|
qualityOptions.push({ name: '320 kbps', bitrate: 320000 });
|
|
qualityOptions.push({ name: '256 kbps', bitrate: 256000 });
|
|
qualityOptions.push({ name: '192 kbps', bitrate: 192000 });
|
|
qualityOptions.push({ name: '128 kbps', bitrate: 128000 });
|
|
qualityOptions.push({ name: '96 kbps', bitrate: 96000 });
|
|
qualityOptions.push({ name: '64 kbps', bitrate: 64000 });
|
|
|
|
if (maxStreamingBitrate) {
|
|
let selectedIndex = -1;
|
|
for (let i = 0, length = qualityOptions.length; i < length; i++) {
|
|
const option = qualityOptions[i];
|
|
|
|
if (selectedIndex === -1 && option.bitrate <= maxStreamingBitrate) {
|
|
selectedIndex = i;
|
|
}
|
|
}
|
|
|
|
if (selectedIndex === -1) {
|
|
selectedIndex = qualityOptions.length - 1;
|
|
}
|
|
|
|
const currentQualityOption = qualityOptions[selectedIndex];
|
|
|
|
if (!options.isAutomaticBitrateEnabled) {
|
|
currentQualityOption.selected = true;
|
|
} else {
|
|
autoQualityOption.autoText = currentQualityOption.name;
|
|
}
|
|
}
|
|
|
|
return qualityOptions;
|
|
}
|
|
|
|
export default {
|
|
getVideoQualityOptions,
|
|
getAudioQualityOptions
|
|
};
|