| from __future__ import unicode_literals | |
| import yt_dlp | |
| import ffmpeg | |
| import sys | |
| ydl_opts = { | |
| 'format': 'bestaudio/best', | |
| # 'outtmpl': 'output.%(ext)s', | |
| 'postprocessors': [{ | |
| 'key': 'FFmpegExtractAudio', | |
| 'preferredcodec': 'wav', | |
| }], | |
| } | |
| def download_from_url(url): | |
| ydl.download([url]) | |
| stream = ffmpeg.input('output.m4a') | |
| stream = ffmpeg.output(stream, 'output.wav') | |
| with yt_dlp.YoutubeDL(ydl_opts) as ydl: | |
| args = sys.argv[1:] | |
| if len(args) > 1: | |
| print("Too many arguments.") | |
| print("Usage: python youtubetowav.py <optional link>") | |
| print("If a link is given it will automatically convert it to .wav. Otherwise a prompt will be shown") | |
| exit() | |
| if len(args) == 0: | |
| url=input("Enter Youtube URL: ") | |
| download_from_url(url) | |
| else: | |
| download_from_url(args[0]) | |