使用 ffmpeg 修剪 mp3 时如何跳过图像错误
Posted
技术标签:
【中文标题】使用 ffmpeg 修剪 mp3 时如何跳过图像错误【英文标题】:How can I skip an image error when trimming an mp3 with ffmpeg 【发布时间】:2016-09-28 21:49:37 【问题描述】:我正在运行以下命令来剪切文件的 30 秒部分
ffmpeg -i 'river.mp3' -ss 30 -t 30 -acodec libmp3lame -b:a 128k 'audio_trimmed.mp3'
但我收到“无效的 PNG 签名”错误。有没有办法跳过图像,因为我不需要它并成功运行命令?
ffmpeg version 2.8.5 Copyright (c) 2000-2016 the FFmpeg developers
built with Apple LLVM version 7.3.0 (clang-703.0.31)
configuration: --prefix=/usr/local/Cellar/ffmpeg/2.8.5 --enable-shared --enable-pthreads --enable-gpl --enable-version3 --enable-hardcoded-tables --enable-avresample --cc=clang --host-cflags= --host-ldflags= --enable-opencl --enable-libx264 --enable-libmp3lame --enable-libvo-aacenc --enable-libxvid --enable-libvorbis --enable-vda
libavutil 54. 31.100 / 54. 31.100
libavcodec 56. 60.100 / 56. 60.100
libavformat 56. 40.101 / 56. 40.101
libavdevice 56. 4.100 / 56. 4.100
libavfilter 5. 40.101 / 5. 40.101
libavresample 2. 1. 0 / 2. 1. 0
libswscale 3. 1.101 / 3. 1.101
libswresample 1. 2.101 / 1. 2.101
libpostproc 53. 3.100 / 53. 3.100
[mp3 @ 0x7f8419010600] Skipping 0 bytes of junk at 73436.
[png @ 0x7f8419812600] Invalid PNG signature 0xFFD8FFE000104A46.
[mp3 @ 0x7f8419010600] decoding for stream 1 failed
[mp3 @ 0x7f8419010600] Could not find codec parameters for stream 1 (Video: png, none(pc)): unspecified size
Consider increasing the value for the 'analyzeduration' and 'probesize' options
Input #0, mp3, from 'river.mp3':
Metadata:
genre : Podcast
album : River City Church's Podcast
artist : Antley Fowler
title : Jubilee Brings Justice
date : 2016-08-15 10:23
Duration: 00:28:28.07, start: 0.025056, bitrate: 64 kb/s
Stream #0:0: Audio: mp3, 44100 Hz, mono, s16p, 64 kb/s
Stream #0:1: Video: png, none(pc), 90k tbr, 90k tbn, 90k tbc
Metadata:
title : Episode Artwork
comment : Cover (front)
[buffer @ 0x7f8418c18de0] Unable to parse option value "0x0" as image size
[buffer @ 0x7f8418c18de0] Unable to parse option value "-1" as pixel format
[buffer @ 0x7f8418c18de0] Unable to parse option value "0x0" as image size
[buffer @ 0x7f8418c18de0] Error setting option video_size to value 0x0.
[graph 0 input from stream 0:1 @ 0x7f8418c18ee0] Error applying options to the filter.
Error opening filters!
【问题讨论】:
我不知道我可以问超级用户。谢谢你告诉我 【参考方案1】:您只能通过添加-map 0:a
选项来选择音频。或者,您可以使用-vn
禁用任何视频流,但我更喜欢-map
,因为它更灵活。请参阅-map
documentation 了解更多信息。
如果您想避免重新编码而只是重新复用,请使用-c:a copy
而不是-c:a libmp3lame
。请参阅stream copy documentation 了解更多信息。
【讨论】:
您能否详细说明示例锄头以跳过 png 错误而不重新编码或如何仅选择音频?我有一个 mp3 文件,在修剪时显示同样的错误。 你的这个解决方案让我很开心,谢谢***.com/a/20202233/5996106以上是关于使用 ffmpeg 修剪 mp3 时如何跳过图像错误的主要内容,如果未能解决你的问题,请参考以下文章
FFMPEG:如何使用 FFMPEG 将附加图片 (APIC) 从源 mp3 文件转码到目标 mp3 文件?