mirror of
https://github.com/c0decracker/video-splitter.git
synced 2026-01-23 02:24:16 +00:00
Added csv support.
This commit is contained in:
parent
2de78b03dc
commit
e4ba28feae
5 changed files with 82 additions and 39 deletions
3
examples/manifest.csv
Normal file
3
examples/manifest.csv
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
start_time,length,rename_to
|
||||
0,34,video1
|
||||
35,22,video2
|
||||
|
17
examples/manifest.json
Normal file
17
examples/manifest.json
Normal 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"
|
||||
}
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue