hls-test/meta-playlist.php
2023-03-08 11:21:37 -08:00

61 lines
1.7 KiB
PHP

<?php
$argv = $_SERVER['argv'];
$self = array_shift( $argv );
$base = array_shift( $argv ); // "fmp4"
$audio = [];
$video = [];
$audioCodecs = [
'mpeg' => 'mp4a.40.34',
'opus' => 'opus'
];
// @fixme use correct settings based on the file
$videoCodecs = [
'vp9' => 'vp09.00.10.08',
'h264' => 'avc1.42e00a',
];
while ( count( $argv ) > 0 ) {
$track = array_shift( $argv );
[ $res, $codec, $ext ] = explode( '.', $track, 3 );
$filename = "$base.$res.$codec.$ext";
$playlist = "$filename.m3u8";
if ( $res === 'audio' ) {
$name = 'English'; // @fixme use correct unknown marker
$language = 'en-US'; // @fixme
$channels = 2; // @fixme
$uri = urlencode( $filename );
$audio[$codec] = "#EXT-X-MEDIA:TYPE=AUDIO,GROUP-ID=\"$codec\",NAME=\"$name\",LANGUAGE=\"$language\",AUTOSELECT=YES,DEFAULT=YES,CHANNELS=\"$channels\",URI=\"$uri\"";
} else {
$bandwidth = 1250000; // @fixme
$width = 854; // @fixme
$height = 480; // @fixme
$fps = 24.0; // @fixme
$baseLine = "#EXT-X-STREAM-INFO:BANDWIDTH=$bandwidth,RESOLUTION={$width}x{$height},FRAME-RATE={$fps}";
if ( count( $audio ) > 1 ) {
foreach ( array_keys( $audio ) as $audioCodec ) {
$codecs = implode( ',', [
$videoCodecs[$codec],
$audioCodecs[$audioCodec],
] );
$line = "$baseLine,CODECS=\"$codecs\"";
}
} else {
$codecs = $videoCodecs[$codec];
$line = "$baseLine,CODECS=\"$codecs\",AUDIO=\"$audioCodec\"";
}
}
}
$lines = array_concat(
[ '#EXTM3U' ],
array_values( $audio ),
$video
);
$m3u8 = implode( "\n", $lines );
print $m3u8;