[dismiss]
På yggenyk.dk bruger vi cookies til at give dig en god oplevelse og til at indsamle statistik, der kan være med til at forbedre brugeroplevelsen. Hvis du klikker på et link på yggenyk.dk, accepterer du samtidig vores cookiepolitik.
How to download and transcode video and audio
Jump to navigation
Jump to search
<google>ENGELSK</google>
Show all YouTube video's available formats
youtube-dl.exe -all-formats https://www.youtube.com/<id>
Download YouTube video in .mp4 format
youtube-dl.exe -f mp4 https://www.youtube.com/<id>
Download YouTube video in all available formats
youtube-dl.exe -all-formats https://www.youtube.com/<id>
Extract .aac from downloaded YouTube video
ffmpeg\ffmpeg.exe -i <filename>.mp4 -vn -acodec copy <filename>.aac
Extract lossless flac from .mp4 video
ffmpeg\ffmpeg.exe -i <filename>.mp4 -vn -f flac -compression_level 8 <filename>.flac
- -compression_level 8 doesnt give much compression, but it will be a bit smaller
- -f flac is not nessesary, .flac as filename is enough
<google>ENGELSK</google>