1
0
mirror of https://github.com/darkzoul5/YoutubePlaylistSync.git synced 2026-07-03 04:23:59 +03:00

feat: add quality options to include 2160p, 1440p, and a best setting.

This commit is contained in:
2026-05-17 12:30:06 +03:00
parent a1217a78c3
commit 988c938a9e
3 changed files with 4 additions and 3 deletions
+1 -1
View File
@@ -231,7 +231,7 @@ jobs:
tar -C package -czf "$name" .
- name: Upload artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: packages-${{ runner.os }}-${{ matrix.ffmpeg }}
path: |
+2 -1
View File
@@ -60,7 +60,8 @@ Defaults:
`max_download_quality`:
- Limits yt-dlp download quality (e.g. `"1080p"`, `"720p"`, `"360p"`). This only affects the downloaded video format selection.
- Limits yt-dlp download quality (e.g. `"2160p"`, `"1440p"`, `"1080p"`, `"720p"`, `"360p"`). This only affects the downloaded video format selection.
- Use `"best"` (or `"auto"`) for no height cap (highest available muxed MP4).
- If the requested max quality isn't available for a video, the best available quality is chosen.
`download_mode`:
+1 -1
View File
@@ -433,7 +433,7 @@ class _PlaylistCard(QtWidgets.QFrame):
self._mode.setCurrentText(row.download_mode or "video")
self._quality = QtWidgets.QComboBox()
self._quality.addItems(["1080p", "720p", "480p", "360p"])
self._quality.addItems(["best", "2160p", "1440p", "1080p", "720p", "480p", "360p"])
self._quality.setEditable(False)
self._quality.setCurrentText(row.max_download_quality or "1080p")