• 4 Posts
  • 37 Comments
Joined 1 year ago
cake
Cake day: June 17th, 2023

help-circle







  • I bought an LG TV, connected it to the internet once to download Jellyfin, blocked internet access directly after.

    If you’re cool with connecting it to the internet once, I’d recommend LG, the Magic Remote is light years ahead of the competition.

    Other than that, just get any OLED TV and don’t give it internet access (or one of the new QD-OLEDs if you have the money for it).









  • While I do agree and have stopped using the Samsung keyboard, it does have many unique features that I still miss almost daily.

    A few that come to mind:

    • a special text editing mode (select all to the left, right; turn select mode on and then move around with arrowkeys while selecting, …)
    • visual resizing of the keyboard
    • “2D” cursor control (move cursor diagonally)
    • swipe spacebar left/right to change input method (while having spacebar cursor control enabled!)




  • I highly recommend transcoding all your videos with ffmpeg, for me that reduces their size to anything from 10% - 25% of the original (100MB -> 20MB). I always use this command:

    ffmpeg input.mp4 -vcodec libx265 -crf 28 ouput.mp4
    

    (This will strip metadata, I was too lazy to figure out how to make it keep metadata). What I also do for most videos is turn them all into 1080p30 if they aren’t already.

    You can ask ChatGPT to make you a small script to apply that command to all files in a folder, I can’t remember how to do it off the top of my head.

    Edit: for linux run this in the folder with your videos:

    for file in *.mp4; do ffmpeg -i "$file" -vcodec libx265 -crf 28 "${file%.*}_transcoded.mp4"; done