Yt-dlp any video & music downloader
For downloading streaming video (ie .m3u8):
A. Single video save as last name.m4a
1.open UltimateVideo.exe
2.paste .m3u8 link and press two time
B. Multiple video using links.txt solve same name saving problem
1.create a links.txt in same file folder location
2.open cmd on these above file folder location
3. yt-dlp --no-playlist -a links.txt -o "D:\Downloads\yt dlp\stream video\video_%(autonumber)s.%(ext)s"
How this alternative saves them:
Line 1 link as video_00001.mp4
Line 2 link as video_00002.mp4
Line 3 link as video_00003.mp4
For downloading YOUTUBE video and music:
A. Single video only (ie .mp4)
1.open cmd on these above file folder location
2.paste it with actual link of video: yt-dlp --no-playlist -f "bv*[ext=mp4][height<=1080]+ba[ext=m4a]/b[ext=mp4][height<=1080]" -o "C:\Downloads\yt dlp\video\%(title)s.%(ext)s" "YOUR_LINK_HERE"
3.here you can also change video height for custom like 1080,720,480,360,240,144 etc.
B. Multiple playlist video (ie .mp4)
1.open cmd on these above file folder location
2.paste it with actual link of video: yt-dlp -f "bv*[ext=mp4][height<=1080]+ba[ext=m4a]/b[ext=mp4][height<=1080]" -o "C:\Downloads\yt dlp\video\%(title)s.%(ext)s" "YOUR_LINK_HERE"
3.here you can also change video height for custom like 1080,720,480,360,240,144 etc.
C. Single music only (ie .m4a high quality)
1.open cmd on these above file folder location
2.paste it with actual link of video: yt-dlp --no-playlist -x --audio-format m4a -o "C:\Downloads\yt dlp\music\%(title)s.%(ext)s" "YOUR_LINK_HERE"
D. Multiple playlist music (ie .m4a high quality)
1.open cmd on these above file folder location
2.paste it with actual link of video: yt-dlp -x --audio-format m4a -o "C:\Downloads\yt dlp\music\%(title)s.%(ext)s" "YOUR_LINK_HERE"
E. Single music only(ie .mp3 128k)
1.open cmd on these above file folder location
2.paste it with actual link of video: yt-dlp --no-playlist -x --audio-format mp3 --audio-quality 128K -o "C:\Downloads\yt dlp\music\%(title)s.%(ext)s" "YOUR_LINK_HERE"
F. Multiple playlist music (ie .mp3 128k)
1.open cmd on these above file folder location
2.paste it with actual link of video: yt-dlp -x --audio-format mp3 --audio-quality 128K -o "C:\Downloads\yt dlp\music\%(title)s.%(ext)s" "YOUR_LINK_HERE"
G. Multiple video or music using links.txt method
1.create a links.txt in same file folder location
2.open cmd on these above file folder location
3.Video: yt-dlp --no-playlist -a links.txt -f "bv*[ext=mp4][height<=1080]+ba[ext=m4a]/b[ext=mp4][height<=1080]" -o "C:\Downloads\yt dlp\video\%(title)s.%(ext)s"
4.here you can also change video height for custom like 1080,720,480,360,240,144 etc.
5.Music (ie .mp3 128k): yt-dlp --no-playlist -a links.txt -x --audio-format mp3 --audio-quality 128K -o "C:\Downloads\yt dlp\music\%(title)s.%(ext)s"
6.Music (ie .m4a): yt-dlp --no-playlist -a links.txt -x --audio-format m4a -o "C:\Downloads\yt dlp\music\%(title)s.%(ext)s"
Comments
Post a Comment