fnp
/
audio.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Show YouTube publishing status.
[audio.git]
/
src
/
youtube
/
models.py
diff --git
a/src/youtube/models.py
b/src/youtube/models.py
index
e6a24ce
..
eb669e0
100644
(file)
--- a/
src/youtube/models.py
+++ b/
src/youtube/models.py
@@
-13,6
+13,7
@@
from .utils import (
get_duration,
get_framerate,
mux,
get_duration,
get_framerate,
mux,
+ standardize_audio,
standardize_video,
video_from_image,
)
standardize_video,
video_from_image,
)
@@
-119,11
+120,15
@@
class YouTube(models.Model):
def prepare_audio(self, input_path):
files = []
if self.intro_flac:
def prepare_audio(self, input_path):
files = []
if self.intro_flac:
- files.append(s
elf.intro_flac.path
)
- files.append(
input_path
)
+ files.append(s
tandardize_audio(self.intro_flac.path)
)
+ files.append(
standardize_audio(input_path, cache=False)
)
if self.outro_flac:
if self.outro_flac:
- files.append(self.outro_flac.path)
- return concat_audio(files)
+ files.append(standardize_audio(self.outro_flac.path))
+ output = concat_audio(files)
+ for d in files:
+ unlink(d)
+ return output
+
def prepare_video(self, duration):
concat = []
def prepare_video(self, duration):
concat = []