Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/joaoemanuell/mp3-api
A api to convert a mpeg-4 aac codec to mp3 codec
https://github.com/joaoemanuell/mp3-api
Last synced: 28 days ago
JSON representation
A api to convert a mpeg-4 aac codec to mp3 codec
- Host: GitHub
- URL: https://github.com/joaoemanuell/mp3-api
- Owner: JoaoEmanuell
- License: mit
- Created: 2022-04-07T20:08:53.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2024-07-15T00:37:37.000Z (6 months ago)
- Last Synced: 2024-07-15T01:39:56.510Z (6 months ago)
- Language: Python
- Size: 113 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
- [mp3-api](#mp3-api)
- [Getting Started](#getting-started)
- [Python](#python)
- [Docker](#docker)# mp3-api
A web API made with Flask and FFmpeg used to convert the `mpeg-4 aac` codec to the `mp3` codec.
- [Click here to access the API documentation](./docs/README.md)
- [Click here to access the API documentation (Brazilian Portuguese)](./docs/README-pt-br.md)
- [Click here to access the Docker image](https://hub.docker.com/repository/docker/joaoemanuell/mp3-api/general)# Getting Started
Clone the repository:
```
git clone https://github.com/JoaoEmanuell/mp3-api.git
```## Python
**Requirements**
```
python => 3.11
```Install the dependencies:
```
pip install -r requirements.txt
```Run the project:
```
flask run --host 0.0.0.0 --port 80
```## Docker
```
Docker => 24
docker-compose => 1.29
```Build:
```
docker-compose build
```Run the container:
```
docker-compose up
```---