Jetzt aktiv als @d_k_bo@feddit.org.

  • 0 Posts
  • 92 Comments
Joined 2 years ago
cake
Cake day: September 26th, 2022

help-circle







  • live transcoding (MKV 480p -> MP4

    Both MKV and MP4 are just container formats. The container contains an video stream and some audio and subtitle streams which are each encoded using a specific codec.

    Converting from one container format to the other is very cheap, it’s the conversion between video codecs that requires a lot of resources. So converting from MKV to MP4 is pretty cheap if you keep the video stream as is.

    Personally, I have never bothered with live transcoding. My videos are all encoded as H.262 or H.264 and stored in either an MKV or MP4 container. Direct Play works just fine. Without live transcoding, a >10 years old Intel Celeron is more than enough to run a jellyfin server.





  • d_k_bo@feddit.detoLinux@lemmy.mlUbuntu Snap Hate
    link
    fedilink
    arrow-up
    14
    arrow-down
    1
    ·
    edit-2
    2 months ago

    You don’t even need to create aliases yourself. Flatpak creates wrapper scripts for every app that you install. Just symlink them into your PATH.

    ln -s /var/lib/flatpak/exports/bin/org.example.CliTool ~/.local/bin/cli-tool
    

    or if you are using a user remote

    ln -s ~/.local/share/flatpak/exports/bin/org.example.CliTool ~/.local/bin/cli-tool
    

    (Note: some lemmy clients render the the tilde in code blocks incorrectly)