mirror of
https://github.com/meeb/tubesync.git
synced 2025-06-22 13:06:34 +00:00
Merge pull request #929 from tcely/tcely-migration
Create `0030_alter_source_source_vcodec.py`
This commit is contained in:
commit
ee14711c61
18
tubesync/sync/migrations/0030_alter_source_source_vcodec.py
Normal file
18
tubesync/sync/migrations/0030_alter_source_source_vcodec.py
Normal 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'),
|
||||||
|
),
|
||||||
|
]
|
Loading…
Reference in New Issue
Block a user