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

help-circle

  • eco_game@discuss.tchncs.detoMemes@lemmy.mlGogle
    link
    fedilink
    arrow-up
    2
    ·
    2 months ago

    I was very disappointed with the (default) Camera after switching to Graphene, luckily you can just download the Pixel Camera (including all the Pixel optimizations) from Play Store on Graphene OS or download it as an APK bundle from some other sites (downloading the normal APK won’t work, it has to be the bundle).





  • 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
    





  • For dealing with .docx files I would recommend OnlyOffice. It’s a FOSS office suite, but unlike LibreOffice, it uses the .docx format natively.

    I read a comment about this a while ago, but basically under the hood LibreOffice does everything in .odt etc. and it has to convert the files first, which can lead to the format breaking. The same goes for OnlyOffice and .odt files, as it only uses .docx etc. under the hood.