Hi Andreas!

On 2014-12-08 19:27 +0100, Andreas Weller wrote:
> I did a bunch of camera shots with my raspberry pi camera. In my script
> I use the following naming scheme for the files created: `date
> --iso-8601=seconds`.jpg
> 
> Now I would like to further process them with ffmpeg.
> 
> What's the correct way to call ffmpeg with these files? Most examples on
> the net simply do it like -f image2 "output_%05d.jpg" - but this
> obviously doesn't work.

  Depending on your build (you need glob) this should work:

  ffmpeg -pattern_type glob -i /tmp/prefix-\*.jpg  <output options>...


  Alexander

P.S.
Just try it, if your build does not have glob support it will error
out telling you so.

Attachment: pgpSoISc0vf3J.pgp
Description: PGP signature

_______________________________________________
ffmpeg-user mailing list
ffmpeg-user@ffmpeg.org
http://ffmpeg.org/mailman/listinfo/ffmpeg-user

Reply via email to