Skip to content

Commit 3d5215a

Browse files
committed
fix transcoding to 480 instead of 1080
1 parent 8d00e76 commit 3d5215a

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

fly.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ app = 'plexio'
22
primary_region = 'iad'
33

44
[build]
5-
image = 'ghcr.io/vanchaxy/plexio:0.1.7'
5+
image = 'ghcr.io/vanchaxy/plexio:0.1.8'
66

77
[env]
88
CACHE_TYPE = 'redis'

frontend/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "frontend",
33
"private": true,
4-
"version": "0.1.7",
4+
"version": "0.1.8",
55
"type": "module",
66
"scripts": {
77
"dev": "vite --host",

plexio/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '0.1.7'
1+
__version__ = '0.1.8'

plexio/models/plex.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ class Resolution(str, Enum):
1414

1515

1616
RESOLUTION_QUALITY_PARAMS = {
17-
Resolution.R480: {
17+
Resolution.R1080: {
1818
'name': '1080p',
1919
'min_width': 1920,
2020
'plex_args': {
@@ -32,7 +32,7 @@ class Resolution(str, Enum):
3232
'videoResolution': '1280x720',
3333
},
3434
},
35-
Resolution.R1080: {
35+
Resolution.R480: {
3636
'name': '480p',
3737
'min_width': 640,
3838
'plex_args': {

0 commit comments

Comments
 (0)