I tried converting mp4 video to HLS for online streaming which I have successfully done using FFmpeg.
Command:
ffmpeg -i /var/www/html/file_conversion/heli.mp4 -map 0 -profile:v baseline -level 3.0 -s 640x360 -c:v libx264 -b:v 500k -c:a libfdk_aac -b:a 320k -hls_list_size 0 -start_number 0 -hls_init_time 0 -hls_time 2 -f hls /var/www/html/file_conversion/hlstest2/heli.m3u8
But now I am trying to convert the same video with multiple bitrates for dynamic adaptive streaming.
Any idea how can I achieve this?