Added csv support.

This commit is contained in:
Oshane Bailey 2015-09-20 12:16:20 -05:00
parent 2de78b03dc
commit e4ba28feae
5 changed files with 82 additions and 39 deletions

3
examples/manifest.csv Normal file
View file

@ -0,0 +1,3 @@
start_time,length,rename_to
0,34,video1
35,22,video2
1 start_time length rename_to
2 0 34 video1
3 35 22 video2

17
examples/manifest.json Normal file
View file

@ -0,0 +1,17 @@
[
{
"start_time": 0,
"length": 34,
"rename_to": "video1"
},
{
"start_time": 35,
"length": 22,
"rename_to": "video2.mp4"
},
{
"start_time": 50,
"end_time": "00:01:20",
"rename_to": "video3.mp4"
}
]