mirror of
https://github.com/meeb/tubesync.git
synced 2025-06-23 21:46:44 +00:00
handle weird formats like dash with no preset height
This commit is contained in:
parent
3aabbfaaac
commit
a8564c2554
@ -637,7 +637,13 @@ class Media(models.Model):
|
||||
# If the download has completed use existing values
|
||||
if self.downloaded:
|
||||
if self.downloaded_format != 'audio':
|
||||
fmt.append(self.downloaded_format.lower())
|
||||
video_format = self.downloaded_format.lower()
|
||||
if ' ' in video_format or not video_format.lower().endswith('p'):
|
||||
height = self.downloaded_height
|
||||
if height > 0:
|
||||
fmt.append(f'{height}p')
|
||||
else:
|
||||
fmt.append(video_format)
|
||||
fmt.append(self.downloaded_video_codec.lower())
|
||||
fmt.append(self.downloaded_audio_codec.lower())
|
||||
if self.downloaded_format != 'audio':
|
||||
@ -661,6 +667,13 @@ class Media(models.Model):
|
||||
# Combined
|
||||
vformat = cformat
|
||||
if vformat:
|
||||
video_format = vformat['format'].lower()
|
||||
if ' ' in video_format or not video_format.lower().endswith('p'):
|
||||
height = vformat.get('height', 0)
|
||||
if height > 0:
|
||||
fmt.append(f'{height}p')
|
||||
else:
|
||||
fmt.append(video_format)
|
||||
fmt.append(vformat['format'].lower())
|
||||
fmt.append(vformat['vcodec'].lower())
|
||||
fmt.append(aformat['acodec'].lower())
|
||||
|
Loading…
Reference in New Issue
Block a user