https://github.com/aristotelesbr/video-enconder
This is a simple video encoder that uses ffmpeg to encode videos to a specific format.
https://github.com/aristotelesbr/video-enconder
bento4 ffmpeg golang test
Last synced: 3 months ago
JSON representation
This is a simple video encoder that uses ffmpeg to encode videos to a specific format.
- Host: GitHub
- URL: https://github.com/aristotelesbr/video-enconder
- Owner: aristotelesbr
- Created: 2023-01-14T18:09:27.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-01-28T18:57:20.000Z (over 2 years ago)
- Last Synced: 2025-01-17T05:27:57.874Z (5 months ago)
- Topics: bento4, ffmpeg, golang, test
- Language: Go
- Homepage:
- Size: 17.6 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# video-enconder
This is a simple video encoder that uses ffmpeg to encode videos to a specific format.
The idea is to have a simple way to encode videos to a specific format, so uploading fragmented videos to google storage is easier using go routines and channels.
## Setup
To use this project you need to have ffmpeg installed on your machine or use a docker image.
### Install dependencies
```bash
go mod tidy
```### Run tests
```bash
go test ./...
```