Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tuhinpal/audio-metatag-writer
Metatag writer with Mutagen
https://github.com/tuhinpal/audio-metatag-writer
audio-metadata mutagen puthon3
Last synced: 29 days ago
JSON representation
Metatag writer with Mutagen
- Host: GitHub
- URL: https://github.com/tuhinpal/audio-metatag-writer
- Owner: tuhinpal
- Created: 2020-12-22T11:39:54.000Z (almost 4 years ago)
- Default Branch: Python
- Last Pushed: 2022-01-08T18:20:31.000Z (almost 3 years ago)
- Last Synced: 2024-08-05T09:16:41.791Z (3 months ago)
- Topics: audio-metadata, mutagen, puthon3
- Language: Python
- Homepage:
- Size: 3.6 MB
- Stars: 6
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Audio metatag writer
This stuff is using on [Musicder](https://musicder.t-ps.net/)### Example payload to `/id3` (POST)
```
{
"song_url":"https://aac.xxx.com/622/c1a0e6f34388089a4c52c1026bee0831_160.mp4",
"cover_url":"https://c.xxx.com/622/Drive-Hindi-2019-20191014095305-500x500.jpg",
"name":"Makhna",
"album":"Drive",
"year":2019,
"artist":"Tanishk Bagchi, Asees Kaur, Yasser Desai"
}
```### Environment variables
- `APP_URL`
- `PORT`### Deploy
Please learn about `Docker` 🤷♂
### Credits
Thanks to [Sumanjay](https://github.com/cyberboysumanjay) for `mutagen` suggestion.
### Note
I'm not a python dev. I used python because there are no way (atleast IDK) instead of using ffmpeg if I use node, and that is very resources consuming. So Sumanjay Bhai suggest me to use mutagen and I used it. Fell free to optimize my noob code. Thank you !