Audio transcoder with simple HTTP API written with Rust & Axum & FFmpeg.
Go to file
2024-05-25 21:50:34 +03:00
src wip: transcoder (now it works, but the code is still very bad) 2024-05-25 21:43:09 +03:00
.editorconfig initial commit 2024-05-24 23:44:26 +03:00
.gitignore initial commit 2024-05-24 23:44:26 +03:00
Cargo.toml wip: transcoding 2024-05-25 20:32:54 +03:00
Dockerfile wip: transcoding 2024-05-25 20:32:54 +03:00
LICENSE.md initial commit 2024-05-24 23:44:26 +03:00
README.md update readme 2024-05-25 21:50:34 +03:00

atranscoder-rpc

Audio transcoder with simple HTTP API. Work in progress.

What works

Transcoding:

  1. cargo run
  2. Upload file for transcoding:
curl --location 'http://localhost:8090/enqueue' \
    --form 'file=@"/home/user/Music/test.mp3"' \
    --form 'format="adts"' \
    --form 'codec="aac"' \
    --form 'bitRate="64000"' \
    --form 'maxBitRate="64000"' \
    --form 'sampleRate="8000"' \
    --form 'channelLayout="mono"' \
    --form 'uploadUrl="http://127.0.0.1:8909/upload"'
  1. You will receive JSON response with job ID. The transcoding result will be saved into /tmp/{job_id}.out.atranscoder

Roadmap

  • Implement acceptable error handling.
  • Restart threads in case of panic.
  • Remove old conversion results and input files every Nth hours.
  • Remove input file after transcoding it.
  • Implement file upload to uploadUrl (if Content-Type: application/json then conversion was not successful and body contains an error info).
  • Remove transcoding result after uploading it to the uploadUrl.
  • (Optional) Make uploadUrl optional and allow the client to download the file on-demand.
  • Docker image for amd64 and aarch64.
  • Tests!