ytdl-org / youtube-dl

Command-line program to download videos from YouTube.com and other video sites
http://ytdl-org.github.io/youtube-dl/
The Unlicense
132.36k stars 10.04k forks source link

How To Download A Video from Hotstar which has more than 1 audio track #22732

Open varunsridharan opened 5 years ago

varunsridharan commented 5 years ago

Checklist

Question

How to download a video with more than 1 audio track from hotstar.com or any other website. for example i am using hotstar.com here https://www.hotstar.com/in/movies/mangalyaan-indias-mission-to-mars/1770005017 This video has 3 or 4 audio track. but when i download i get only the first audio track.

varunsridharan commented 5 years ago

any update on this ?

palashcode commented 4 years ago

use the following command to get a list of available formats "youtube-dl -F https://www.hotstar.com/in/movies/mangalyaan-indias-mission-to-mars/1770005017". You will get something like this: format code extension resolution note hls-audio_aac131-English-0 mp4 audio only [eng] hls-audio_aac131-English-1 mp4 audio only [eng] hls-audio_aac131-English-2 mp4 audio only [eng] dash-video_avc1_1-0 mp4 320x180 video only

Select the audio and video format code from above and use the following command to download: "youtube-dl -f 'dash-video_avc1_1-0+hls-audio_aac131-English-0' --merge-output-format mp4 https://www.hotstar.com/in/movies/mangalyaan-indias-mission-to-mars/1770005017"

varunsridharan commented 4 years ago

@palashcode thanks for your answer. before posting here i tried to the same. but since i am using windows to download the unicode chars are not showing properly

What i get image

What it should show.

hls-audio_aac131-हिन्दी-0   mp4        audio only [hin]
hls-audio_aac131-हिन्दी-1   mp4        audio only [hin]
hls-audio_aac131-हिन्दी-2   mp4        audio only [hin]
hls-audio_aac131-বাংলা-0    mp4        audio only [ben]
hls-audio_aac131-বাংলা-1    mp4        audio only [ben]
hls-audio_aac131-বাংলা-2    mp4        audio only [ben]
hls-audio_aac131-தமிழ்-0    mp4        audio only [tam]
hls-audio_aac131-தமிழ்-1    mp4        audio only [tam]
hls-audio_aac131-தமிழ்-2    mp4        audio only [tam]
hls-audio_aac131-తెలుగు-0   mp4        audio only [tel]
hls-audio_aac131-తెలుగు-1   mp4        audio only [tel]
hls-audio_aac131-తెలుగు-2

is there any way to download all audio files combined ?

coderkar commented 4 years ago

The solution pointed by @palashcode works. For the case pointed out by @varunsridharan, I had to specify the format that starts with "dash*" (for eg. dash-audio_hi_mp4a_3-1 )instead the one that uses the characters from local languages.