Differences
This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
| embyserver [2023/10/11 13:16] – norman | embyserver [2025/05/16 03:38] (current) – [Emby Server Little helpers] norman | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| ====== Emby Server Little helpers ====== | ====== Emby Server Little helpers ====== | ||
| + | |||
| + | Linux File Permissions | ||
| + | |||
| + | < | ||
| + | setfacl -m user: | ||
| + | </ | ||
| + | |||
| + | < | ||
| + | setfacl -m user: | ||
| + | |||
| + | |||
| + | |||
| + | or to grant "read only" access to specific folders: | ||
| + | |||
| + | |||
| + | |||
| + | setfacl -m user: | ||
| + | |||
| + | |||
| + | setfacl -m user: | ||
| + | |||
| + | setfacl -m user: | ||
| + | |||
| + | Since Live TV must be read and written, then it's neccesary to grant " | ||
| + | |||
| + | setfacl -m user: | ||
| + | </ | ||
| + | |||
| + | Source: [[https:// | ||
| + | ===== Linux Shell Convert Videos with Emby NVIDIA HW transcoding ===== | ||
| + | |||
| + | First, | ||
| + | < | ||
| + | ln -s / | ||
| + | ln -s / | ||
| + | ln -s / | ||
| + | ln -s / | ||
| + | ln -s / | ||
| + | ln -s / | ||
| + | ln -s / | ||
| + | |||
| + | Then You can convert videos using Emby ffmpeg. | ||
| + | Example for HEVC: | ||
| + | < | ||
| + | |||
| + | Or scale down: | ||
| + | < | ||
| + | |||
| + | |||
| Line 18: | Line 67: | ||
| < | < | ||
| [Service] | [Service] | ||
| - | Nice=-5 | + | Nice=-20 |
| </ | </ | ||
| 4. Exit and save the override file. Y and enter for the prompts. | 4. Exit and save the override file. Y and enter for the prompts. | ||
| Line 25: | Line 74: | ||
| < | < | ||
| + | Source: [[https:// | ||
| ===== Announcement text at top of home page ===== | ===== Announcement text at top of home page ===== | ||
| Line 40: | Line 89: | ||
| justify-content: | justify-content: | ||
| display: flex; | display: flex; | ||
| + | } | ||
| + | </ | ||
| + | |||
| + | |||
| + | ===== Annoucments v2 Blink ===== | ||
| + | |||
| + | < | ||
| + | /*--- Announcement text at top of home page ---*/ | ||
| + | .verticalSection.section0: | ||
| + | content: "Your text message"; | ||
| + | position: relative; | ||
| + | white-space: | ||
| + | font-size: 200%; | ||
| + | color: var(--theme-accent-text-color); | ||
| + | justify-content: | ||
| + | text-align: center; | ||
| + | display: flex; | ||
| + | } | ||
| + | |||
| + | .verticalSection.section0: | ||
| + | animation: blinker 3s cubic-bezier(0, | ||
| + | } | ||
| + | |||
| + | @keyframes blinker { | ||
| + | 50% { | ||
| + | opacity: 0; | ||
| + | } | ||
| } | } | ||
| </ | </ | ||