transcoder icon indicating copy to clipboard operation
transcoder copied to clipboard

Transcoding library implementation in Golang

Results 13 transcoder issues
Sort by recently updated
recently updated
newest added

```go type Options struct { Aspect *string `flag:"-aspect"` Resolution *string `flag:"-s"` VideoBitRate *string `flag:"-b:v"` VideoBitRateTolerance *int `flag:"-bt"` VideoMaxBitRate *int `flag:"-maxrate"` VideoMinBitrate *int `flag:"-minrate"` VideoCodec *string `flag:"-c:v"` Vframes *int `flag:"-vframes"` FrameRate...

Hi, How can I run option HW accel Cuda? I'm trying but not working.

Could you write a library that would allow easily converting a Video to a series of Go Images, and back? That would be greatly appreciated!

Concat operation does not appear to be possible, either with a filelist method: `ffmpeg -f concat -i filelist.txt -c copy out1.mp4` OR "concat" protocol method: ` ffmpeg -i "concat:vid2.mp4|vid1.mp4" -c...

Is it possible to have a working example on how to use metadata, especially the duration. While testing this module, I get an empty string for duration. ``` transcoder :=...

Hey does this have the ability to stream the desktop to IP:PORT? via tcp or is not avliable

Hi, What I want to do is basically modify subtitle files attached to a video (`.mkv` file format to be more precise) This includes adding one or more subtitle streams...

Hi there, I was trying to use your code and i found this in your code: ``` // InputPipe ... func (t *Transcoder) InputPipe(w *io.WriteCloser, r *io.ReadCloser) transcoder.Transcoder { if...

Hello, I was following example given in the readme file but it does not output any progress, other than that it works fine. My function looks like that: ``` //ConvertAudio...