go-fluent-ffmpeg icon indicating copy to clipboard operation
go-fluent-ffmpeg copied to clipboard

A Go implementation of fluent-ffmpeg

Results 4 go-fluent-ffmpeg issues
Sort by recently updated
recently updated
newest added
trafficstars

Anyone have any examples of doing a two pass encode in this library? I'm looking to convert my NodeJS transcoder to this library, here's and example of a job, also...

trying to use err := fluentffmpeg. NewCommand(""). InputPath("http://"). OutputOptions("-movflags", "isml+frag_keyframe+empty_moov"). OutputFormat("mp4"). VideoCodec("h264"). KeyframeInterval(52). Resolution("640x360"). PipeOutput(w). Run() all is ok besides the output resolution. It is always the same as the...

在Probe方法中有这样一段代码: ```go if err := cmd.Wait(); err != nil { log.Fatal(err) return nil, errors.Wrap(err, "Running ffprobe failed") } ``` 而log.Fatal的实现里面是直接退出程序的 ```go std.Output(2, fmt.Sprint(v...)) os.Exit(1) ``` 所以返回永远都不会执行并且会导致程序退出,我是go语言新手,我觉得这样做是不合理的?还是说我的理解有误吗?