Deployed 185c6ec1 with MkDocs version: 1.3.1

gh-pages
2 years ago
parent e08a64f7df
commit 0b0429078a

@ -2286,7 +2286,77 @@ sudo chmod -R <span class="nv">a</span><span class="o">=</span>,a+rX,u+w,g+w /da
</div> </div>
<details class="example"> <details class="example">
<summary>docker-compose - [CLICK TO EXPAND]</summary> <summary>docker-compose - [CLICK TO EXPAND]</summary>
<div class="highlight"><pre><span></span><code>--8&lt;-- &quot;includes/docker/docker-compose.yml&quot; <div class="highlight"><pre><span></span><code>version: &quot;3.2&quot;
services:
radarr:
container_name: radarr
image: cr.hotio.dev/hotio/radarr:latest
restart: unless-stopped
logging:
driver: json-file
network_mode: bridge
ports:
- 7878:7878
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/Amsterdam
volumes:
- /etc/localtime:/etc/localtime:ro
- /docker/appdata/radarr:/config
- /data:/data
sonarr:
container_name: sonarr
image: cr.hotio.dev/hotio/sonarr:latest
restart: unless-stopped
logging:
driver: json-file
network_mode: bridge
ports:
- 8989:8989
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/Amsterdam
volumes:
- /etc/localtime:/etc/localtime:ro
- /docker/appdata/sonarr:/config
- /data:/data
bazarr:
container_name: bazarr
image: cr.hotio.dev/hotio/bazarr:latest
restart: unless-stopped
logging:
driver: json-file
network_mode: bridge
ports:
- 6767:6767
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/Amsterdam
volumes:
- /etc/localtime:/etc/localtime:ro
- /docker/appdata/bazarr:/config
- /data/media:/data/media
sabnzbd:
container_name: sabnzbd
image: cr.hotio.dev/hotio/sabnzbd:latest
restart: unless-stopped
logging:
driver: json-file
network_mode: bridge
ports:
- 8080:8080
- 9090:9090
environment:
- PUID=1000
- PGID=1000
- TZ=Europe/Amsterdam
volumes:
- /etc/localtime:/etc/localtime:ro
- /docker/appdata/sabnzbd:/config
- /data/usenet:/data/usenet:rw
</code></pre></div> </code></pre></div>
</details> </details>
<!-- BEGIN INCLUDE ../../../includes/hardlinks/docker-compose-commands.md --> <!-- BEGIN INCLUDE ../../../includes/hardlinks/docker-compose-commands.md -->

@ -949,6 +949,26 @@
x265 (720/1080p) x265 (720/1080p)
</a> </a>
<nav class="md-nav" aria-label="x265 (720/1080p)">
<ul class="md-nav__list">
<li class="md-nav__item">
<a href="#microsized-wrong-source" class="md-nav__link">
Microsized &amp; Wrong Source
</a>
</li>
<li class="md-nav__item">
<a href="#golden-rule" class="md-nav__link">
Golden Rule
</a>
</li>
</ul>
</nav>
</li> </li>
<li class="md-nav__item"> <li class="md-nav__item">
@ -2999,6 +3019,26 @@
x265 (720/1080p) x265 (720/1080p)
</a> </a>
<nav class="md-nav" aria-label="x265 (720/1080p)">
<ul class="md-nav__list">
<li class="md-nav__item">
<a href="#microsized-wrong-source" class="md-nav__link">
Microsized &amp; Wrong Source
</a>
</li>
<li class="md-nav__item">
<a href="#golden-rule" class="md-nav__link">
Golden Rule
</a>
</li>
</ul>
</nav>
</li> </li>
<li class="md-nav__item"> <li class="md-nav__item">
@ -6978,7 +7018,30 @@ Several reasons why this is happening:</p>
<p>This blocks/ignores 720/1080p(HD) releases that are encoded in x265</p> <p>This blocks/ignores 720/1080p(HD) releases that are encoded in x265</p>
<p>In your quality profile use the following score for this Custom Format: <code>-10000</code></p> <p>In your quality profile use the following score for this Custom Format: <code>-10000</code></p>
<div class="admonition fail"> <div class="admonition fail">
<p>--8&lt;-- "includes/docker/x265.md"</p> <div class="admonition quote">
<p class="admonition-title">Quote</p>
<p>x265 is good for 4k stuff or 1080p if they used the the remuxes as source.
If the media isn't source quality/remux, then there will be a loss of quality every time.
Also, once you go x265, typically that file is done.
It can't be changed to something else without a huge loss of quality.</p>
<p>Something like 95% of video files are x264 and have much better direct play support.
If you have more than a couple users,
you will notice much more transcoding.
Just depends on your priorities.</p>
<p>So basically if you are storage poor and just need to save space, use x265.
The catch is if you want best quality x265, you need source quality files, so you still have huge file sizes.
If you want maximum compatibility and the option to change your files to something else later,
then x264.
It's all really dependent on specific situations for different people</p>
</div>
<h4 id="microsized-wrong-source">Microsized &amp; Wrong Source<a class="headerlink" href="#microsized-wrong-source" title="Permanent link"></a></h4>
<p>It's a shame that most x265 groups microsize the releases or use the x264 as source what results in low quality releases. And the few groups that do use the correct source suffer from it.</p>
<h4 id="golden-rule">Golden Rule<a class="headerlink" href="#golden-rule" title="Permanent link"></a></h4>
<p>That's why I created my own golden rule.</p>
<ul>
<li>720/1080p =&gt; x264</li>
<li>2160p/4k =&gt; x265</li>
</ul>
</div> </div>
</details> </details>
<details class="example"> <details class="example">

File diff suppressed because one or more lines are too long

Binary file not shown.
Loading…
Cancel
Save