我正在使用 cygwin64 版本的 ffmpeg(1,2) 到将字幕刻录到视频文件中如下:
$ ffmpeg -i file.mp4 -vf subtitles=file.srt file.ts
ffmpeg version 1.2.3 Copyright (c) 2000-2013 the FFmpeg developers
built on Sep 18 2013 01:11:22 with gcc 4.8.1 (GCC)
configuration: --prefix=/usr --libdir=/usr/lib --shlibdir=/usr/bin --incdir=/usr/include --mandir=/usr/share/man --disable-static --enable-shared --enable-gpl --enable-version3 --enable-postproc --enable-swscale --enable-avfilter --enable-pthreads --enable-bzlib --enable-fontconfig --enable-frei0r --enable-gnutls --enable-libass --enable-libbluray --enable-libcdio --enable-libcelt --enable-libfreetype --enable-libgsm --enable-libilbc --enable-libmodplug --enable-libmp3lame --enable-libopenjpeg --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libopencv --enable-libopenjpeg --enable-libopus --enable-libpulse --enable-librtmp --enable-libschroedinger --enable-libspeex --enable-libtheora --enable-libtwolame --disable-libutvideo --enable-libvo-aacenc --enable-libvo-amrwbenc --enable-libvorbis --enable-libvpx --enable-libx264 --disable-libxavs --enable-openal --enable-x11grab --enable-zlib --disable-debug --disable-optimizations --enable-yasm --disable-stripping
libavutil 52. 18.100 / 52. 18.100
libavcodec 54. 92.100 / 54. 92.100
libavformat 54. 63.104 / 54. 63.104
libavdevice 54. 3.103 / 54. 3.103
libavfilter 3. 42.103 / 3. 42.103
libswscale 2. 2.100 / 2. 2.100
libswresample 0. 17.102 / 0. 17.102
libpostproc 52. 2.100 / 52. 2.100
Input #0, mov,mp4,m4a,3gp,3g2,mj2, from 'file.mp4':
Metadata:
major_brand : isom
minor_version : 512
compatible_brands: isomiso2avc1mp41
creation_time : 2013-07-18 23:29:41
encoder : Lavf51.12.1
Duration: 00:21:59.66, start: 0.000000, bitrate: 5461 kb/s
Stream #0:0(eng): Video: h264 (Constrained Baseline) (avc1 / 0x31637661), yuv420p, 1280x720 [SAR 1:1 DAR 16:9], 5135 kb/s, 59.94 fps, 59.94 tbr, 60k tbn, 119.88 tbc
Metadata:
creation_time : 2013-07-19 02:21:28
handler_name : VideoHandler
Stream #0:1(eng): Audio: aac (mp4a / 0x6134706D), 48000 Hz, 5.1, fltp, 319 kb/s
Metadata:
creation_time : 2013-07-19 02:21:28
handler_name : SoundHandler
[srt @ 0x600057e80] Estimating duration from bitrate, this may be inaccurate
Output #0, mpegts, to 'file.ts':
Metadata:
major_brand : isom
minor_version : 512
compatible_brands: isomiso2avc1mp41
encoder : Lavf54.63.104
Stream #0:0(eng): Video: mpeg2video, yuv420p, 1280x720 [SAR 1:1 DAR 16:9], q=2-31, 200 kb/s, 90k tbn, 59.94 tbc
Metadata:
creation_time : 2013-07-19 02:21:28
handler_name : VideoHandler
Stream #0:1(eng): Audio: mp2, 48000 Hz, stereo, s16, 128 kb/s
Metadata:
creation_time : 2013-07-19 02:21:28
handler_name : SoundHandler
Stream mapping:
Stream #0:0 -> #0:0 (h264 -> mpeg2video)
Stream #0:1 -> #0:1 (aac -> mp2)
Press [q] to stop, [?] for help
[Parsed_subtitles_0 @ 0x6000229c0] Neither PlayResX nor PlayResY defined. Assuming 384x288
但字幕根本没有出现在最终的视频流中。
警告[Parsed_subtitles_0 @ 0x6000229c0] Neither PlayResX nor PlayResY defined. Assuming 384x288
不是问题的一部分,因为将字幕转换为.ass
viaffmpeg -i file.srt file.ass
和指定 PlayResX 和 Y 值使警告消失而不解决原始问题。
我知道为 ffmpeg 提供字幕过滤器的 libass 库使用了 fontconfig,它是已知在 Windows 下无法开箱即用。但是,没有任何字体配置警告,这让我相信这不是问题所在。有任何线索可以说明问题的原因是什么吗?
编辑:我自己下载并编译了ffmpeg:
$ git clone git://source.ffmpeg.org/ffmpeg.git ffmpeg
$ cd ffmpeg
$ ./configure --enable-static --disable-shared --enable-libass
$ make
转换的输出./ffmpeg -i file.mp4 -vf subtitles=file.srt file.ts
完全相同,只是这次没有打印任何警告消息。我正在研究fontconfig 库配置可能是罪魁祸首。
答案1
事实证明,cygwinfontconfig 包默认情况下不会继承 Windows 字体。我已通过将C:\Windows\Fonts
文件夹符号链接到其中一个 fontconfig 文件夹并更新字体缓存来修复此问题,如下所示:
$ ln -s /cygdrive/c/Windows/Fonts /usr/share/fonts/win-fonts
$ fc-cache
或者,cygwin 端口存储库包含许多font-*
X11 包,可以安装到类似的目的,同时保持 cygwin 和 Windows 字体分开。