diff --git a/.vscode/launch.json b/.vscode/launch.json index da500c43..e2486ea9 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -10,7 +10,6 @@ "runtimeArgs": [ "run", "dev", - "--", "--port", "8082" ], diff --git a/app/library/Utils.py b/app/library/Utils.py index 7a986130..e2e472c2 100644 --- a/app/library/Utils.py +++ b/app/library/Utils.py @@ -576,12 +576,7 @@ def get_mime_type(metadata: dict, file_path: pathlib.Path) -> str: "matroska": "video/x-matroska", # Default for MKV "webm": "video/webm", # MKV can also be WebM "mp4": "video/mp4", - "mov": "video/quicktime", - "avi": "video/x-msvideo", - "flv": "video/x-flv", - "ogg": "video/ogg", "mpegts": "video/mp2t", - "3gp": "video/3gpp", } # Check format_name against known formats diff --git a/ui/components/VideoPlayer.vue b/ui/components/VideoPlayer.vue index 63d0e18c..10812a07 100644 --- a/ui/components/VideoPlayer.vue +++ b/ui/components/VideoPlayer.vue @@ -28,7 +28,7 @@