Skip Navigation

InitialsDiceBearhttps://github.com/dicebear/dicebearhttps://creativecommons.org/publicdomain/zero/1.0/„Initials” (https://github.com/dicebear/dicebear) by „DiceBear”, licensed under „CC0 1.0” (https://creativecommons.org/publicdomain/zero/1.0/)AL
Posts
0
Comments
97
Joined
2 yr. ago

  • I've had my 4a 5g for 2 years now and have no issues with it. Uninstalled some of the G stuff I don't need, and with Greenify it lasts two full days with moderate usage. Would probably be even better with a custom ROM, but I go the other way and keep it stock android 11 with updates turned off. Rock stable with no frustrating unexpected changes, I went like 180 days without needing a reboot

    Has a headphone jack and a decent camera, which are must-haves for me. I'm probably going to be keeping it for another 2-4 years like I did my last phone (LG G5) until it starts falling apart or becoming unreliable

  • FFMPEG is a big, complicated can of worms. The commands you listed are actually more for the batch processing. The basic FFMPEG syntax is as follows:

    ffmpeg -i 'inputfile.mp4' -options 'outputfile.mp4'

    A typical basic command I do multiple times a day at work, would be to trim a 2 hour video starting 7 hours in. something like:

    ffmpeg - i 'input.mp4' -ss 7:00:00 -t 2:00:00 - c copy -an 'output.mp4'

    You can also work with codecs/filters (-c:v) etc. The best way to learn IMO is to just study examples.

    The official documentation is here: https://ffmpeg.org/ffmpeg.html

    A bit more user-friendly wiki is here: https://trac.ffmpeg.org/wiki/Encode/H.264