Initial data:
ffmpeg version 2.7.2-static
built with gcc 4.9.3 (Debian 4.9.3-1)
configuration: --enable-gpl --enable-version3 --disable-shared --disable-debug --enable-runtime-cpudetect --enable-libmp3lame --enable-libx264 --enable-libx265 --enable-libwebp --enable-libspeex --enable-libvorbis --enable-libvpx --enable-libfreetype --enable-fontconfig --enable-libxvid --enable-libopencore-amrnb --enable-libopencore-amrwb --enable-libtheora --enable-libvo-aacenc --enable-libvo-amrwbenc --enable-gray --enable-libopenjpeg --enable-libopus --enable-libass --enable-gnutls --enable-libvidstab --enable-libsoxr --cc=gcc-4.9
- video.mp4 the file is 31000079 bytes
The problem is:
cat video.mp4 | ffmpeg -i pipe: -v warning -vf scale=100:100 scaled_video.mp4produces a file of 755052 bytescat video.mp4 | ffmpeg -i pipe: -v warning -vf scale=100:100 -f h264 - > scaled_video.mp4produces a file of 252804 bytes
ffprobe shows that initial file video stream is h264
What can't i see ?:D