Add files via upload

This commit is contained in:
tcely 2025-04-07 14:35:39 -04:00 committed by GitHub
parent e23bf7a3e2
commit 456eadd35e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -0,0 +1,18 @@
# Generated by Django 5.1.8 on 2025-04-07 18:28
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('sync', '0029_alter_mediaserver_fields'),
]
operations = [
migrations.AlterField(
model_name='source',
name='source_vcodec',
field=models.CharField(choices=[('AVC1', 'AVC1 (H.264)'), ('VP9', 'VP9'), ('AV1', 'AV1')], db_index=True, default='VP9', help_text='Source video codec, desired video encoding format to download (ignored if "resolution" is audio only)', max_length=8, verbose_name='source video codec'),
),
]