Skip to content

Instantly share code, notes, and snippets.

@redhog

redhog/test.sh Secret

Created March 5, 2020 09:25
Show Gist options
  • Save redhog/1dc1da91bac613760794be666d22918d to your computer and use it in GitHub Desktop.
Save redhog/1dc1da91bac613760794be666d22918d to your computer and use it in GitHub Desktop.
ffmpeg transmission problem
#! /bin/bash
ls x/* | sort |
while read name; do
echo "IN $name" >&2
cat $name;
sleep 1;
done |
ffmpeg -framerate 1 -f image2pipe -vcodec mjpeg -s 640x480 -pix_fmt yuvj420p -i - -vcodec libx265 -f matroska - |
ffmpeg -f matroska -i - -r 1/1 out.%07d.jpg
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment