Skip to content
Snippets Groups Projects
Commit 581abfdf authored by Robert Goldmann's avatar Robert Goldmann
Browse files

Fixed #2 - download is only audio

parent 4fb28395
No related branches found
No related tags found
No related merge requests found
......@@ -8,7 +8,6 @@ import googleapiclient.discovery
import googleapiclient.errors
import youtube_dl
VERSION = (2, 0, 0)
......@@ -111,11 +110,11 @@ class SaveMyPlaylist:
newVideos.append(item)
ydl_opts = {
'format': 'bestaudio/best',
'format': 'bestvideo+bestaudio',
'merge_output_format': 'mp4',
'outtmpl': os.path.join(destinationFolder, fileName),
'logger': MyLogger(),
'progress_hooks': [my_hook],
'progress_hooks': [my_hook]
}
if debug:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment