https://github.com/trafex/videotranscoder
Wrapper around ffmpeg to transcode media to Apple's ProRes codec
https://github.com/trafex/videotranscoder
davinci-resolve ffmpeg-wrapper transcoding video video-transcoding
Last synced: 5 months ago
JSON representation
Wrapper around ffmpeg to transcode media to Apple's ProRes codec
- Host: GitHub
- URL: https://github.com/trafex/videotranscoder
- Owner: TrafeX
- License: mit
- Created: 2020-12-28T07:10:04.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-09-28T07:35:27.000Z (9 months ago)
- Last Synced: 2025-02-01T15:39:57.398Z (5 months ago)
- Topics: davinci-resolve, ffmpeg-wrapper, transcoding, video, video-transcoding
- Language: Go
- Homepage:
- Size: 15.6 KB
- Stars: 5
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Video Transcoder
Wrapper around [ffmpeg](https://ffmpeg.org/) to transcode media to Apple's ProRes codec.This will prepare your videos to be used in [DaVinci Resolve](https://www.richardlackey.com/avc-hevc-transcode-davinci-resolve/) or other editing programs that don't like H.264 / H.265 encoded media.
[](https://goreportcard.com/report/github.com/TrafeX/videotranscoder)
## Installation
You need to have ffmpeg installed on your system.
Then, download the binary for your OS on the [releases](https://github.com/TrafeX/videotranscoder/releases) page and execute it.
Or run;```
go install github.com/TrafeX/videotranscoder
```## Usage
```
videotranscode -source=/path/to/folder/with/source/videos -target=/path/to/place/transcoded/folder
```Note: In the target folder a new folder will be created that has the same name as the source folder with a `-transcoded` postfix.
### Overwrite existing files
By default existing transcoded video files in the target folder are not overridden. You can change this by passing the `-overwrite` flag.