Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
storyxc committed Jul 17, 2024
1 parent 3fb97de commit 0918ea5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/linux/applications/FFmpeg相关.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ ffmpeg -i input.mp4 -vn -acodec libmp3lame -q:a 0 ~/Downloads/output.mp3
### yt-dlp下载最高质量音频并由ffmpeg输出mp3

```shell
yt-dlp -f bestaudio "https://www.youtube.com/watch?v=example" -o - | ffmpeg -i - -vn -acodec libmp3lame -q:a 0 ~/downloads/output.mp3
yt-dlp -f bestaudio "https://www.youtube.com/watch?v=xxx" -o - | ffmpeg -i pipe:0 -vn -acodec libmp3lame -q:a 0 ~/downloads/output.mp3
```

### yt-dlp下载最高质量视频&音频并合成一个视频
Expand Down

0 comments on commit 0918ea5

Please sign in to comment.