From 2955b1c7d4f878bed21ec1520d302064344829c0 Mon Sep 17 00:00:00 2001 From: percidae Date: Fri, 29 Dec 2023 16:03:36 +0100 Subject: [PATCH] Longer String for the video file url --- www/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/models.py b/www/models.py index 7345e65..f43b6a6 100755 --- a/www/models.py +++ b/www/models.py @@ -417,7 +417,7 @@ class Talk(BasisModell): persons = models.ManyToManyField(Speaker, through = "Talk_Persons", default = None, blank = True) #through="Talk_Persons" #pad_id = models.CharField(max_length = 30, default = "", blank = True) link_to_writable_pad = MaybeURLField(default = "", blank = True) - link_to_video_file = models.URLField(max_length = 200, default = "", blank = True) # use for trint and upload to c3subtitels YT + link_to_video_file = models.URLField(max_length = 220, default = "", blank = True) # use for trint and upload to c3subtitels YT amara_key = models.CharField(max_length = 20, default = "", blank = True) c3subtitles_youtube_key = models.CharField(max_length = 20, blank = True) video_duration = models.TimeField(default=time(0), blank=True)