Jump to content

FFMPEG [AVFilterGraph @ 0000028c34b0dd40] No such filter: '\'

sav99

Hello I found a forum post with a FFMPEG snippet for Linux.

It can create a video with the wave form and a background image. It uses the "vstack vertically stacks the two effects" filter.

I am running windows 10 and have updated all the files of FFMPEG to be sure I am running the latest files.

 

The error I am getting :

Quote

[AVFilterGraph @ 0000028c34b0dd40] No such filter: '\'
Error initializing complex filters.
Invalid argument

 

The only thing I have changed to the snippet is changed the extensions to my files and added the double quotes to the input file name, so the dash does not interfere with the parameters, this is the code I am running :

 

ffmpeg -i "MyVid - Part1.mp4" -loop 1 -i image.png -filter_complex \
"[0:a]showfreqs=mode=line:ascale=log:fscale=log:s=1280x518[sf]; \
 [0:a]showwaves=s=1280x202:mode=p2p[sw]; \
 [sf][sw]vstack[fg]; \
 [1:v]scale=1280:-1,crop=iw:720[bg]; \
 [bg][fg]overlay=shortest=1:format=auto,format=yuv420p,drawtext=fontfile=/usr/share/fonts/TTF/Vera.ttf:fontcolor=white:x=10:y=10:text='\"Rated80s Prophets Prey\" My Title'[out]" \
-map "[out]" -map 0:a -c:v libx264 -preset fast -crf 18 -c:a libopus Myvid2.mp4

Can someone tell me what is going wrong?

Thanks in advance!

Link to comment
Share on other sites

Link to post
Share on other sites

Topic can be closed, I have already finished the videos manually.

Link to comment
Share on other sites

Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×