Re: [FFmpeg-user] Parsing svg from stdin

2022-04-12 Thread Paul B Mahol
On Tue, Apr 12, 2022 at 6:06 AM Justin Higgins wrote: > I've built ffmpeg with the `--enable-librsvg` configuration > > I'm trying to get svg images from stdin to output to mp4 > > It works using the syntax: > ffmpeg -width 300 -height 500 -i image-%03d.svg -vf format=yuv420p > output.mp4 > > but

[FFmpeg-user] Parsing svg from stdin

2022-04-11 Thread Justin Higgins
I've built ffmpeg with the `--enable-librsvg` configuration I'm trying to get svg images from stdin to output to mp4 It works using the syntax: ffmpeg -width 300 -height 500 -i image-%03d.svg -vf format=yuv420p output.mp4 but when I pipe from stdin: cat image-*.svg | ffmpeg -loglevel level+warni