from django.utils.translation import gettext_lazy as _
from django.template import Template, Context
from apiclient import youtube_call
-from archive.settings import LICENSE, LICENSE_NAME
from .utils import (
concat_audio,
concat_videos,
from .thumbnail import create_thumbnail
+YOUTUBE_TITLE_LIMIT = 100
+
+
class YouTube(models.Model):
title_template = models.CharField(max_length=1024, blank=True)
description_template = models.TextField(blank=True)
def get_context(self, audiobook):
return Context(dict(
audiobook=audiobook,
- LICENSE=LICENSE,
- LICENSE_NAME=LICENSE_NAME,
))
def get_description(self, audiobook):
return Template(self.description_template).render(self.get_context(audiobook))
def get_title(self, audiobook):
- return Template(self.title_template).render(self.get_context(audiobook))
+ return Template(self.title_template).render(self.get_context(audiobook))[:YOUTUBE_TITLE_LIMIT]
def get_data(self, audiobook):
return dict(
data = self.get_data(audiobook)
part = ",".join(data.keys())
- with open(path, "rb") as f:
- response = youtube_call(
- "POST",
- "https://www.googleapis.com/upload/youtube/v3/videos",
- params={'part': part},
- json=data,
- resumable_data=f.read(),
- )
+ response = youtube_call(
+ "POST",
+ "https://www.googleapis.com/upload/youtube/v3/videos",
+ params={'part': part},
+ json=data,
+ resumable_file_path=path,
+ )
data = response.json()
audiobook.youtube_id = data['id']
audiobook.save(update_fields=['youtube_id'])
def prepare_audio(self, input_path):
files = []
- delete = []
if self.intro_flac:
files.append(standardize_audio(self.intro_flac.path))
- delete.append(files[-1])
- files.append(input_path)
+ files.append(standardize_audio(input_path, cache=False))
if self.outro_flac:
files.append(standardize_audio(self.outro_flac.path))
- delete.append(files[-1])
output = concat_audio(files)
- for d in delete:
+ for d in files:
unlink(d)
return output