Hi I am trying to conver a Video with multiple audio tracks to HLS using FFmpeg but after Conversion all the tracks except the first and default track is being removed. How to Preserve all the tracks after conversion.
ffmpeg -i "videoava.mp4" -acodec copy -map 0:0 -map 0:1 -map 0:2 -map 0:3 -c copy index.m3u8 -profile:v baseline -level 3.0 -s 640x360 -start_number 0 -hls_time 10 -hls_list_size 0 -f hls index.m3u8
Tried this but no Use