Fixes Issue #2 #4

Merged
dafo5502 merged 59 commits from developer into master 2021-10-25 14:41:37 +02:00
Showing only changes of commit c80be26c2c - Show all commits

View File

@ -64,7 +64,7 @@ class Mediasite:
demux_file = os.path.join(slides_path, 'demux.txt') demux_file = os.path.join(slides_path, 'demux.txt')
with open(demux_file, 'w') as f: with open(demux_file, 'w') as f:
for slide in data['slides']: for slide in data['slides']:
myslide = { 'url': os.join.path(slides_path, self._download(slides_path, slide['url'], session)), myslide = { 'url': os.path.join(slides_path, self._download(slides_path, slide['url'], session)),
'duration': slide['duration'] } 'duration': slide['duration'] }
f.write('file \'{}\'\n'.format(myslide['url'])) f.write('file \'{}\'\n'.format(myslide['url']))
f.write('duration {}\n'.format(slide['duration'])) f.write('duration {}\n'.format(slide['duration']))
@ -73,7 +73,6 @@ class Mediasite:
# to accomodate for an ffmpeg quirk that needs the last slide twice # to accomodate for an ffmpeg quirk that needs the last slide twice
f.write('file \'{}\'\n'.format(mypackage['slides'][-1]['url'])) f.write('file \'{}\'\n'.format(mypackage['slides'][-1]['url']))
mypackage['demux_file'] = demux_file mypackage['demux_file'] = demux_file
return mypackage return mypackage
def _download(self, base, remotefile, session): def _download(self, base, remotefile, session):