youtube-dl错误:无法下载视频并将音频提取到同一文件中

时间:2018-04-14 16:15:49

标签: youtube-dl

我使用完全相同的youtube-dl命令,没有播放列表选项来下载单个音频文件,并且它有效。但是当我将它用于此播放列表时,我收到错误:无法下载视频并将音频提取到同一个文件中!使用"(分机)s。%(分机)s"而不是"(分机)s"作为输出模板

在Windows 10上运行。非常感谢任何帮助!!

PS C:\xxx\FFMPEG> .\YouTubeBatchAudioPlaylistIndexes.bat


C:\xxx\FFMPEG>call bin\youtube-dl.exe -x --audio-format "mp3" --audio-quality 3 --batch-file="songs.txt" --playlist-items 4,6,7,8,10,11,16,17,20,21,23,25,27,28,31,33,36,38,39,41,43,45,46,48,50 -o"C:\Users\xxx\Downloads\%(title)s.%(ext)s" --verbose
[debug] System config: []
[debug] User config: []
[debug] Custom config: []
[debug] Command-line args: ['-x', '--audio-format', 'mp3', '--audio-quality', '3', '--batch-file=songs.txt', '--playlist-items', '4,6,7,8,10,11,16,17,20,21,23,25,27,28,31,33,36,38,39,41,43,45,46,48,50', '-oC:\\Users\\xxx\\Downloads\\(ext)s', '--verbose']
[debug] Batch file urls: ['https://www.youtube.com/watch?v=anurOHpo0aY&index=4&list=PLlRluznmnq9f7OMI4avwFyV2xMVxlV3_w&t=0s']
Usage: youtube-dl.exe [OPTIONS] URL [URL...]

youtube-dl.exe: error: Cannot download a video and extract audio into the same file! Use "C:\Users\xxx\Downloads\(ext)s.%(ext)s" instead of "C:\Users\xxx\Downloads\(ext)s" as the output template

1 个答案:

答案 0 :(得分:0)

如果查看输出,您会看到输出模板中的百分号已被吞噬:

(...) '-oC:\\Users\\xxx\\Downloads\\(ext)s', '--verbose']

这是因为在批处理文件you need to write %% if you want a percent sign中,再次将再次加倍call,如下所示:

call bin\youtube-dl.exe -x --audio-format "mp3" --audio-quality 3 ^
     --batch-file="songs.txt" --playlist-items ^
    4,6,7,8,10,11,16,17,20,21,23,25,27,28,31,33,36,38,39,41,43,45,46,48,50 ^
    -o "C:\Users\xxx\Downloads\%%%%(title)s.%%%%(ext)s" --verbose