Common issues docs page

This commit is contained in:
Christian Benincasa
2024-06-14 14:54:18 -04:00
parent c88a7d11cd
commit becdefef4a
2 changed files with 19 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
# Common Issues
## Missing Hardware Acceleration Options
The hardware acceleration options listed in the FFMPEG Settings page are derived from output generated by the your configured `ffmpeg` executable. The command used to discover available hardware accel. options is
```
ffmpeg -hide_banner -hwaccels
```
There are a few reasons why your desired hardware acceleration option is not appearing in this list. Here a few of the common ones we've seen:
1. If using Docker, you are not using the appropriate image tag. For instance, if you want to use Nvidia hardware accel, you must be sure to use the `*-nvidia` labeled Tunarr builds. For iGPUs, like Intel GPUs, the `*-vaapi` Docker images are required.
2. The `ffmpeg` executable used by Tunarr is not correct. Double-check the executable path configured by Tunarr with the one in your CLI environment (`which ffmpeg`). One example of this running on Ubuntu and having installed a version of ffmpeg with `snap` (executable in `/snap/bin/ffmpeg`) and one with `apt` (in `/usr/bin/ffmpeg`).
3. The `ffmpeg` executable you are using does not have the necessary libraries compiled in. This can be verified with the hardware accel. command above.
If you've double-checked these things and still are experiencing issues, please open up a [new Q&A discussion topic](https://github.com/chrisbenincasa/tunarr/discussions/new?category=q-a&title=Missing%20Hardware%20Acceleration%20Option) so we can debug.

View File

@@ -47,6 +47,8 @@ nav:
- Clients:
- configure/clients/index.md
- Plex: configure/clients/plex.md
- Misc.:
- Common Issues: misc/common-issues.md
- Development:
- Contributing: dev/contributing.md