On Wed, Apr 11, 2018 at 9:07 PM, Varun Ramesh <frr...@gmail.com> wrote:

> As part of my build process, I create a video from an image sequence. The
> ffmpeg call looks something like this:
>
> ffmpeg -i image-%03d.png video.webm
>
> Tup tries to interpret the '%03d' flag, errors, and thus does not build.
> Is there anyway to make Tup ignore this and pass it directly on to the
> application?
>
>
Hi Varun,

You can use %% to get a single % passed to the application, so something
like this should work:

: |> ffmpeg -i image-%%03d.png %o |> video.webm

I'll update the man page to document it.

-Mike

-- 
-- 
tup-users mailing list
email: tup-users@googlegroups.com
unsubscribe: tup-users+unsubscr...@googlegroups.com
options: http://groups.google.com/group/tup-users?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"tup-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tup-users+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to