Skip to content

Instantly share code, notes, and snippets.

@kzkn
Last active May 12, 2017 16:25
Show Gist options
  • Save kzkn/14dcd5f49df05ea8772bcdf46727267c to your computer and use it in GitHub Desktop.
Save kzkn/14dcd5f49df05ea8772bcdf46727267c to your computer and use it in GitHub Desktop.
#!/bin/sh
while read f
do
echo "$f"
# ffmpeg -loglevel error -i "${f}" -f image2 -vcodec png -r 1 "%03d.png"
# https://unix.stackexchange.com/a/36411
ffmpeg -loglevel error -i "${f}" -f image2 -vcodec png -r 1 "%03d.png" </dev/null
done <<EOF
a.mp4
b.mp4
EOF
@kzkn
Copy link
Author

kzkn commented May 12, 2017

実行結果:

$ uname -a
Linux ubuntu-xenial 4.4.0-75-generic #96-Ubuntu SMP Thu Apr 20 09:56:33 UTC 2017 x86_64 x86_64 x86_64 GNU/Linux
$ ffmpeg -version
ffmpeg version 2.8.11-0ubuntu0.16.04.1 Copyright (c) 2000-2017 the FFmpeg developers
built with gcc 5.4.0 (Ubuntu 5.4.0-6ubuntu1~16.04.4) 20160609
configuration: --prefix=/usr --extra-version=0ubuntu0.16.04.1 --build-suffix=-ffmpeg --toolchain=hardened --libdir=/usr/lib/x86_64-linux-gnu --incdir=/usr/include/x86_64-linux-gnu --cc=cc --cxx=g++ --enable-gpl --enable-shared --disable-stripping --disable-decoder=libopenjpeg --disable-decoder=libschroedinger --enable-avresample --enable-avisynth --enable-gnutls --enable-ladspa --enable-libass --enable-libbluray --enable-libbs2b --enable-libcaca --enable-libcdio --enable-libflite --enable-libfontconfig --enable-libfreetype --enable-libfribidi --enable-libgme --enable-libgsm --enable-libmodplug --enable-libmp3lame --enable-libopenjpeg --enable-libopus --enable-libpulse --enable-librtmp --enable-libschroedinger --enable-libshine --enable-libsnappy --enable-libsoxr --enable-libspeex --enable-libssh --enable-libtheora --enable-libtwolame --enable-libvorbis --enable-libvpx --enable-libwavpack --enable-libwebp --enable-libx265 --enable-libxvid --enable-libzvbi --enable-openal --enable-opengl --enable-x11grab --enable-libdc1394 --enable-libiec61883 --enable-libzmq --enable-frei0r --enable-libx264 --enable-libopencv
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
$ ./ffmpeg_bug.sh
a.mp4

b.mp4 が読まれない。ffmpeg の行をコメントアウトすると:

$ ./ffmpeg_bug.sh
a.mp4
b.mp4

a.mp4, b.mp4 の両方が読まれる。

@kzkn
Copy link
Author

kzkn commented May 12, 2017

ffmpeg の実行に </dev/null を加えることで対処できた。

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment