Compare commits
2 Commits
0d451c7be4
...
915b352481
Author | SHA1 | Date |
---|---|---|
Ales (Shagi) Zabala Alava | 915b352481 | |
Ales (Shagi) Zabala Alava | 40d21ac0ee |
36
README.md
36
README.md
|
@ -1,6 +1,6 @@
|
||||||
Negro Mate Songs
|
Negro Mate Songs
|
||||||
================
|
================
|
||||||
Negro Mate's song database library. Not much versatile without two another packages:
|
[Negro Mate](https://negromate.rocks)'s song database library. Not very versatile without two another packages:
|
||||||
|
|
||||||
* [negromate.web](https://pypi.org/project/negromate.web/): Static html compiler for the web of Negro Mage
|
* [negromate.web](https://pypi.org/project/negromate.web/): Static html compiler for the web of Negro Mage
|
||||||
* [negromate.karaoke](https://pypi.org/project/negromate.karaoke/): Simple karaoke video browser
|
* [negromate.karaoke](https://pypi.org/project/negromate.karaoke/): Simple karaoke video browser
|
||||||
|
@ -22,3 +22,37 @@ packages on older systems:
|
||||||
* xdotool
|
* xdotool
|
||||||
* aegisub
|
* aegisub
|
||||||
* xserver-xephyr
|
* xserver-xephyr
|
||||||
|
|
||||||
|
|
||||||
|
## Song library structure
|
||||||
|
|
||||||
|
Each song is a folder containing at least a video file, a subtitles file and a metadata file:
|
||||||
|
|
||||||
|
song_name/
|
||||||
|
├── song_name.ass
|
||||||
|
├── song_name.mp4
|
||||||
|
└── metadata.json
|
||||||
|
|
||||||
|
Video and subtitles file has to be named like the folder. Supported subtitles:
|
||||||
|
|
||||||
|
* ass (prefered)
|
||||||
|
* src
|
||||||
|
* vtt
|
||||||
|
|
||||||
|
### The metadata json file
|
||||||
|
|
||||||
|
{
|
||||||
|
"name": "Song name",
|
||||||
|
"original": "Original song, Original author",
|
||||||
|
"karaoke": true,
|
||||||
|
"date": "XXXX-XX-XX"
|
||||||
|
"author": "Author of the karaoke"
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
* `name`: used as the title of the song.
|
||||||
|
* `original`: for giving credit to original authors.
|
||||||
|
* `karaoke`: if `true`, the ass subtitles file has karaoke level subtitles (syllable level timing)
|
||||||
|
and automatik karaoke subtitles can be generated.
|
||||||
|
* `date`: approx. creation date of this version
|
||||||
|
* `author`: not required, used for givin credits to the author when it's different from the web authors.
|
||||||
|
|
Loading…
Reference in New Issue