We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ffmpeg -i pipe:0-i pipe:1-i pipe:2...
such as
in1 := ffmpeg.Input("pipe:0", inArgs) overlay := ffmpeg.Input("pipe:1", inArgs).Filter("scale", ffmpeg.Args{"128:-1"}).WithInput(bytes.NewReader([]byte(testSdp))) e := ffmpeg.Filter( []*ffmpeg.Stream{ in1, overlay, }, "overlay", ffmpeg.Args{"10:10"}, ffmpeg.KwArgs{"enable": "gte(t,1)"}). WithInput(bytes.NewReader([]byte(ffmpegSdp))). Output(*output, outArgs).OverWriteOutput().ErrorToStdOut().Run()
pipe:1: Invalid data found when processing input
The text was updated successfully, but these errors were encountered:
no way, and try to put content into http-server, and ffmpeg input with http-protocol:
in1 := ffmpeg.Input("http://xxx", inArgs) overlay := ffmpeg.Input("http://yyy", inArgs).Filter("scale", ffmpeg.Args{"128:-1"}) e := ffmpeg.Filter( []*ffmpeg.Stream{ in1, overlay, }, "overlay", ffmpeg.Args{"10:10"}, ffmpeg.KwArgs{"enable": "gte(t,1)"}). Output(*output, outArgs).OverWriteOutput().ErrorToStdOut().Run()
Sorry, something went wrong.
No branches or pull requests
such as
pipe:1: Invalid data found when processing input
The text was updated successfully, but these errors were encountered: