Empaquetador de transmisión HLS/DASH

Empaqueta videos para transmisión web. Genera listas de reproducción HLS y manifiestos DASH con múltiples variantes de calidad.

Standard HLS (VOD)

Create a .m3u8 playlist and segments.

ffmpeg -i input.mp4 -c:v libx264 -c:a aac -f hls -hls_time 10 -hls_list_size 0 output.m3u8
Note:Creates 10-second segments. -hls_list_size 0 includes all segments in the playlist (required for VOD).

HLS Single File (Byte Range)

One large .ts file with byte ranges.

ffmpeg -i input.mp4 -c:v libx264 -c:a aac -f hls -hls_time 10 -hls_flags single_file output.m3u8
Note:Instead of hundreds of small files, creates one output.ts and uses byte ranges in the .m3u8 playlist. Easier to manage.

VIDEO API

Descubre por qué Hunt es el proveedor de API preferido por los desarrolladores.