-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
processmedia2 stub for export_media.py
- Loading branch information
Showing
6 changed files
with
43 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
""" | ||
New static track format | ||
""" | ||
|
||
# from config.docker.json - `path_static` | ||
#output to `tracks.json`` ? | ||
test = { | ||
'BASE64_HASH': { | ||
'source_filename': '', # For debugging | ||
'attachments': [ | ||
{ | ||
'url': 'PATH/BASE64_HASH.mp4', | ||
'use': 'preview', | ||
'mime': 'video/mp4', | ||
}, | ||
## if you want consistant image order then sort by url-string to get consistent order | ||
], | ||
'duration': 300.0, | ||
'srt': 'SRT_TEXT', | ||
'tags': 'TAG_TEXT', # provide js for translating tag.txt into parent/childs - this is reasonably trivial | ||
} | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters