Go to file
Schoumi 14f0c05ef7 Update Readme.md 2019-03-13 11:53:42 +01:00
.gitignore Initial and Last (until next one) commit 2019-03-13 11:36:02 +01:00
LICENSE Initial and Last (until next one) commit 2019-03-13 11:36:02 +01:00
Readme.md Update Readme.md 2019-03-13 11:53:42 +01:00
main.c Initial and Last (until next one) commit 2019-03-13 11:36:02 +01:00
makefile Initial and Last (until next one) commit 2019-03-13 11:36:02 +01:00

Readme.md

Split Audio File

Split audio file is a mini-application to split a long vorbis (ogg) file into segment and add metadata for each part.

Build

make

Run

# OutputDir should exist before runing

./split-audio-file -i InputFile.ogg -o OutputDir -s SplitInfoFile.csv

SplitIntoFile File Format

group;A Group;
album;An Album;
year;2019;
genre;A Genre;
tracks;5;
1;Title 1;00:00;01:50;
2;Title 2;01:50;05:43;
3;Title 3;05:43;09:53;
4;Title 4;09:53;13:49;
5;Title 5;13:49;17:20;

group, album, year, genre are optionnal

tracks is mandatory

tracknumber;title;start_time;end_time; are mandatory

More

It's a simple peace of code made in few hours, it could be inprove in many ways.