kopia lustrzana https://github.com/linuxserver/docker-documentation
Bot Updating Documentation
rodzic
32d208a77e
commit
6827afe899
|
@ -58,6 +58,9 @@ docker create \
|
||||||
-v /opt/vc/lib:/opt/vc/lib `#optional` \
|
-v /opt/vc/lib:/opt/vc/lib `#optional` \
|
||||||
--device /dev/dri:/dev/dri `#optional` \
|
--device /dev/dri:/dev/dri `#optional` \
|
||||||
--device /dev/vchiq:/dev/vchiq `#optional` \
|
--device /dev/vchiq:/dev/vchiq `#optional` \
|
||||||
|
--device /dev/video10:/dev/video10 `#optional` \
|
||||||
|
--device /dev/video11:/dev/video11 `#optional` \
|
||||||
|
--device /dev/video12:/dev/video12 `#optional` \
|
||||||
--restart unless-stopped \
|
--restart unless-stopped \
|
||||||
linuxserver/emby
|
linuxserver/emby
|
||||||
```
|
```
|
||||||
|
@ -93,6 +96,9 @@ services:
|
||||||
devices:
|
devices:
|
||||||
- /dev/dri:/dev/dri #optional
|
- /dev/dri:/dev/dri #optional
|
||||||
- /dev/vchiq:/dev/vchiq #optional
|
- /dev/vchiq:/dev/vchiq #optional
|
||||||
|
- /dev/video10:/dev/video10 #optional
|
||||||
|
- /dev/video11:/dev/video11 #optional
|
||||||
|
- /dev/video12:/dev/video12 #optional
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
```
|
```
|
||||||
|
|
||||||
|
@ -132,6 +138,9 @@ Docker images are configured using parameters passed at runtime (such as those a
|
||||||
| :-----: | --- |
|
| :-----: | --- |
|
||||||
| `/dev/dri` | Only needed if you want to use your Intel GPU for hardware accelerated video encoding (vaapi). |
|
| `/dev/dri` | Only needed if you want to use your Intel GPU for hardware accelerated video encoding (vaapi). |
|
||||||
| `/dev/vchiq` | Only needed if you want to use your Raspberry Pi OpenMax video encoding (Bellagio). |
|
| `/dev/vchiq` | Only needed if you want to use your Raspberry Pi OpenMax video encoding (Bellagio). |
|
||||||
|
| `/dev/video10` | Only needed if you want to use your Raspberry Pi V4L2 video encoding. |
|
||||||
|
| `/dev/video11` | Only needed if you want to use your Raspberry Pi V4L2 video encoding. |
|
||||||
|
| `/dev/video12` | Only needed if you want to use your Raspberry Pi V4L2 video encoding. |
|
||||||
|
|
||||||
|
|
||||||
## User / Group Identifiers
|
## User / Group Identifiers
|
||||||
|
@ -173,6 +182,15 @@ Hardware acceleration users for Raspberry Pi OpenMAX will need to mount their /d
|
||||||
-v /opt/vc/lib:/opt/vc/lib
|
-v /opt/vc/lib:/opt/vc/lib
|
||||||
```
|
```
|
||||||
|
|
||||||
|
### V4L2 (Raspberry Pi)
|
||||||
|
|
||||||
|
Hardware acceleration users for Raspberry Pi V4L2 will need to mount their /dev/video1X devices inside of the container by passing the following options when running or creating the container:
|
||||||
|
```
|
||||||
|
--device=/dev/video10:/dev/video10
|
||||||
|
--device=/dev/video11:/dev/video11
|
||||||
|
--device=/dev/video12:/dev/video12
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## Support Info
|
## Support Info
|
||||||
|
@ -188,6 +206,7 @@ Hardware acceleration users for Raspberry Pi OpenMAX will need to mount their /d
|
||||||
|
|
||||||
## Versions
|
## Versions
|
||||||
|
|
||||||
|
* **29.02.20:** - Add v4l2 support on Raspberry Pi.
|
||||||
* **26.02.20:** - Add openmax support on Raspberry Pi.
|
* **26.02.20:** - Add openmax support on Raspberry Pi.
|
||||||
* **15.02.20:** - Allow restarting emby from the gui (also allows for auto restarts after addon updates).
|
* **15.02.20:** - Allow restarting emby from the gui (also allows for auto restarts after addon updates).
|
||||||
* **02.10.19:** - Improve permission fixing for render and dvb devices.
|
* **02.10.19:** - Improve permission fixing for render and dvb devices.
|
||||||
|
|
Ładowanie…
Reference in New Issue