Skip to content

Instantly share code, notes, and snippets.

View FabianBartl's full-sized avatar
🤖
studies robotics

Fabian FabianBartl

🤖
studies robotics
  • Germany
  • 05:44 (UTC +01:00)
View GitHub Profile
@FabianBartl
FabianBartl / originalTitleFix.css
Created November 17, 2025 21:28 — forked from SingularReza/originalTitleFix.css
A fix to add original title back in elegant theme for jellyfin
.nameContainer {
flex-direction: row;
align-items: baseline;
padding-bottom: 0.25em;
overflow: auto;
justify-content: center !important;
}
.detailImageContainer:has(.backdropCard,.squareCard)~.nameContainer h1:has(+ h3).parentName.focuscontainer-x {
display: none !important;
@FabianBartl
FabianBartl / create-chapters.py
Last active November 20, 2025 10:35 — forked from cliss/mergechapters.py
Create chapters from text file by modifying ffmetadata. Merge videos with chapters while keeping all audio and subtitle tracks.
# Create chapters from text file by modifying ffmetadata
# https://ikyle.me/blog/2020/add-mp4-chapters-ffmpeg
import re, sys
if len(sys.argv) < 2:
print(f"Usage: {__file__} [chapters file]")
exit()
chapters = list()