nesslookalike yt-dlp DL format suggestions update (#1062)

* re-word the example yt-dlp download format suggestions

* update to recommendation, more technical info added

* add av01 recommendation

* quotes

* re-formatted to pass prettier pre-commit check
This commit is contained in:
Ness LookAlike 2025-10-08 20:34:40 -07:00 committed by GitHub
parent e139ec84a5
commit 968183d216
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 15 additions and 3 deletions

View File

@ -396,19 +396,31 @@ const SettingsApplication = () => {
<span className="settings-current">
{'bestvideo[height<=720]+bestaudio/best[height<=720]'}
</span>
: best audio and max video height of 720p.
: <q>best</q> video and <q>best</q> audio (yt-dlp's choice), max video
height of 720p.
</li>
<li>
<span className="settings-current">
{'bestvideo[height<=1080]+bestaudio/best[height<=1080]'}
</span>
: best audio and max video height of 1080p.
: <q>best</q> video and <q>best</q> audio (yt-dlp's choice), max video
height of 1080p.
</li>
<li>
<span className="settings-current">
{'bestvideo[height<=1080][vcodec*=avc1]+bestaudio[acodec*=mp4a]/mp4'}
</span>
: Max 1080p video height with iOS compatible video and audio codecs.
: <q>best</q> universally iOS-compatible video (forced avc1) and{' '}
<q>best</q> audio (forced mp4a), mp4 container, max video height of 1080p.
</li>
<li>
<span className="settings-current">
'bv*[vcodec~=av01]+ba[acodec~=mp4a]/bv*[vcodec~=av01]+ba/
bv*[vcodec~=avc1]+ba[acodec~=mp4a]/bv*[vcodec~=avc1]+ba/bv*+ba/b'
</span>
: <q>best</q> iOS-compatible video (av01, compatible with iPhone 15 Pro
and newer) and <q>best</q> audio (mp4a), no max video height, with
fallback to avc1 and other formats if necessary.
</li>
<li>This can also be configured on a per channel basis.</li>
<li>