mirror of https://gitlab.com/bashrc2/epicyon
Save file containing video transcript
parent
dc031cd4a9
commit
8b15721674
14
media.py
14
media.py
|
@ -549,6 +549,19 @@ def _update_etag(media_filename: str) -> None:
|
||||||
str(media_filename) + '.etag')
|
str(media_filename) + '.etag')
|
||||||
|
|
||||||
|
|
||||||
|
def _store_video_transcript(video_transcript: str,
|
||||||
|
media_filename: str) -> bool:
|
||||||
|
"""Stores a video transcript
|
||||||
|
"""
|
||||||
|
try:
|
||||||
|
with open(media_filename + '.vtt', 'w+', encoding='utf-8') as fp_vtt:
|
||||||
|
fp_vtt.write(video_transcript)
|
||||||
|
return True
|
||||||
|
except OSError:
|
||||||
|
print('EX: unable to save video transcript ' + media_filename + '.vtt')
|
||||||
|
return False
|
||||||
|
|
||||||
|
|
||||||
def attach_media(base_dir: str, http_prefix: str,
|
def attach_media(base_dir: str, http_prefix: str,
|
||||||
nickname: str, domain: str, port: int,
|
nickname: str, domain: str, port: int,
|
||||||
post_json: {}, image_filename: str,
|
post_json: {}, image_filename: str,
|
||||||
|
@ -622,6 +635,7 @@ def attach_media(base_dir: str, http_prefix: str,
|
||||||
|
|
||||||
post_json['attachment'] = [attachment_json]
|
post_json['attachment'] = [attachment_json]
|
||||||
if video_transcript and 'video' in media_type:
|
if video_transcript and 'video' in media_type:
|
||||||
|
if _store_video_transcript(video_transcript, media_filename):
|
||||||
video_transcript_json = {
|
video_transcript_json = {
|
||||||
'mediaType': 'text/vtt',
|
'mediaType': 'text/vtt',
|
||||||
'name': system_language,
|
'name': system_language,
|
||||||
|
|
8
utils.py
8
utils.py
|
@ -1787,6 +1787,8 @@ def can_reply_to(base_dir: str, nickname: str, domain: str,
|
||||||
|
|
||||||
def _remove_attachment(base_dir: str, http_prefix: str, domain: str,
|
def _remove_attachment(base_dir: str, http_prefix: str, domain: str,
|
||||||
post_json: {}):
|
post_json: {}):
|
||||||
|
"""Removes media files for an attachment
|
||||||
|
"""
|
||||||
if not post_json.get('attachment'):
|
if not post_json.get('attachment'):
|
||||||
return
|
return
|
||||||
if not post_json['attachment'][0].get('url'):
|
if not post_json['attachment'][0].get('url'):
|
||||||
|
@ -1802,6 +1804,12 @@ def _remove_attachment(base_dir: str, http_prefix: str, domain: str,
|
||||||
except OSError:
|
except OSError:
|
||||||
print('EX: _remove_attachment unable to delete media file ' +
|
print('EX: _remove_attachment unable to delete media file ' +
|
||||||
str(media_filename))
|
str(media_filename))
|
||||||
|
if os.path.isfile(media_filename + '.vtt'):
|
||||||
|
try:
|
||||||
|
os.remove(media_filename + '.vtt')
|
||||||
|
except OSError:
|
||||||
|
print('EX: _remove_attachment unable to delete media transcript ' +
|
||||||
|
str(media_filename) + '.vtt')
|
||||||
etag_filename = media_filename + '.etag'
|
etag_filename = media_filename + '.etag'
|
||||||
if os.path.isfile(etag_filename):
|
if os.path.isfile(etag_filename):
|
||||||
try:
|
try:
|
||||||
|
|
Loading…
Reference in New Issue