https://github.com/jsixface/codexvert
Codecs convertor. Convert codec for your media files
https://github.com/jsixface/codexvert
codec ffmpeg kotlin-multiplatform wasm
Last synced: 4 months ago
JSON representation
Codecs convertor. Convert codec for your media files
- Host: GitHub
- URL: https://github.com/jsixface/codexvert
- Owner: jsixface
- License: agpl-3.0
- Created: 2024-03-08T02:16:00.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2025-06-26T00:31:46.000Z (5 months ago)
- Last Synced: 2025-06-26T01:28:53.641Z (5 months ago)
- Topics: codec, ffmpeg, kotlin-multiplatform, wasm
- Language: Kotlin
- Homepage:
- Size: 4.88 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# CodeXvert - Manage and Transcode Your Video Library
CodeXvert is a modern web application built with Kotlin Multiplatform that simplifies managing and transcoding your video library. It provides a user-friendly interface to browse your videos, filter them by codecs, and convert between different video and audio codecs with ease.
## Features
- **Video Library Management**: Configure your library directory to search your video files and display the codec
information.
- **Codec Filtering**: Filter your videos based on video and audio codecs for better organization and easy identification.
- **Transcoding**: Convert between different video and audio codecs with a simple interface. Supported codecs include
H.264, H.265, AAC, MP3, Opus, AC3 and EAC3.
- **Background Monitoring**: Automatically monitor and manage your video library in the background, ensuring your
library is always up-to-date.
## Getting Started
To get started with CodeXvert, you can either run the application locally or deploy the Docker container.
### Running Locally
1. Clone the repository: `git clone https://github.com/jsixface/codexvert.git`
2. Navigate to the project directory: `cd codexvert`
3. Build the project: `./gradlew build`
4. Run the web application: `./gradlew :server:run`
5. Access the application in your browser at `http://localhost:8080`
### Docker Deployment
CodeXvert is available as a Docker image on the GitHub Container Registry. You can pull and run the latest image with
the below command.
The indexed data about the files and their codecs are stored in `/app/data/codex.db`. This should be mounted if you like
the `ffprobe` parsing should be persisted.
```bash
docker run -d --rm \
--name codexvert \
-v ./data:/app/data \
-v /media:/media \
-p 8080:8080 \
ghcr.io/jsixface/codexvert:latest
```
#### Compose
```yaml
services:
codexvert:
container_name: codexvert
image: ghcr.io/jsixface/codexvert:latest
restart: unless-stopped
ports:
- 8080:8080
volumes:
- ./data:/app/data
- /media:/media
- /etc/localtime:/etc/localtime:ro
```
This will start the CodeXvert application and expose it on http://localhost:8080.
## Screenshots
[//]: # ()

## License
CodeXvert is released under the AGPL-3.0 License.