mirror of
https://github.com/darkzoul5/YoutubePlaylistSync.git
synced 2026-07-04 04:53:58 +03:00
feat: add quality options to include 2160p, 1440p, and a best setting.
This commit is contained in:
@@ -231,7 +231,7 @@ jobs:
|
|||||||
tar -C package -czf "$name" .
|
tar -C package -czf "$name" .
|
||||||
|
|
||||||
- name: Upload artifact
|
- name: Upload artifact
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v7
|
||||||
with:
|
with:
|
||||||
name: packages-${{ runner.os }}-${{ matrix.ffmpeg }}
|
name: packages-${{ runner.os }}-${{ matrix.ffmpeg }}
|
||||||
path: |
|
path: |
|
||||||
|
|||||||
@@ -60,7 +60,8 @@ Defaults:
|
|||||||
|
|
||||||
`max_download_quality`:
|
`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.
|
- If the requested max quality isn't available for a video, the best available quality is chosen.
|
||||||
|
|
||||||
`download_mode`:
|
`download_mode`:
|
||||||
|
|||||||
@@ -433,7 +433,7 @@ class _PlaylistCard(QtWidgets.QFrame):
|
|||||||
self._mode.setCurrentText(row.download_mode or "video")
|
self._mode.setCurrentText(row.download_mode or "video")
|
||||||
|
|
||||||
self._quality = QtWidgets.QComboBox()
|
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.setEditable(False)
|
||||||
self._quality.setCurrentText(row.max_download_quality or "1080p")
|
self._quality.setCurrentText(row.max_download_quality or "1080p")
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user