Differences
This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
| embyserver [2024/08/31 14:53] – 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 | ||
| - | ===== Linux Shell Convert | + | < |
| + | 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: | ||
| + | </ | ||
| - | First, add Emby libraries to Linux: | + | Source: [[https://emby.media/community/index.php?/topic/32218-file-permissions-guide-for-new-linux-users/|External Link]] |
| - | < | + | ===== Linux Shell Convert Videos with Emby NVIDIA HW transcoding ===== |
| - | Then run: | + | |
| - | < | + | |
| + | First, | ||
| + | < | ||
| + | ln -s / | ||
| + | ln -s / | ||
| + | ln -s / | ||
| + | ln -s / | ||
| + | ln -s / | ||
| + | ln -s / | ||
| + | ln -s / | ||
| Then You can convert videos using Emby ffmpeg. | Then You can convert videos using Emby ffmpeg. | ||
| Line 58: | 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; | ||
| + | } | ||
| } | } | ||
| </ | </ | ||