audioMotion Background images into AVIF #85
JesusGod-Pope666-Info
started this conversation in
General
Replies: 1 comment 3 replies
-
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I refixed the jpg files into AVIF with my default settings - see if you can see any difference and do whatever you will with them. Slicing some extra weight off. I love AVIF. Even when it compress it can also do some healing to the images. But anyway, you can do your own comparison, I just did them. And by the way been running AVIF in audioMotion for some time, have not seen any issues really as far as I know.
AVIF pictures made and BIN and code included.zip
Although less supported, and Github does not allow uploading of that kind of file - it is odd there still seem to be some support issues on this wonderful file format, I really like it. Video is whole another thing, which I still have not sorted out totally yet, clearly. And not sure I like Opus that much either for audio, although have fixed a lot of files with it now. But probably going to re-encode them from the originals.
Overall I put a little information in the text file in the zip - but here are the codes I used, the binaries are in the zip as well and for Linux:
This is what I have used for your images, 2 codes same thing beside one needing parallel to be installed.
# # # BIN AVIFENC # # # # BIN AVIFENC # # # # BIN AVIFENC # # # # BIN AVIFENC
----Without PARALLEL Dependency! :
time find . -type f -iregex '..(png|jpe?g)$' | while read -r file; do avifenc -j 12 -a tune=iq -q 60 -d 10 -s 0 -y 444 "$file" "${file%.}.avif" done echo "# # # # Finish # # # #"
----Dependency: sudo apt install parallel #### making an input output? #### -j is how many parallels runs and the next -j how many CPU/Threads is used for each instance depending on your processor change the first number:
time find . -type f -iregex '.*.(png|jpe?g)$' | parallel -j 6 avifenc -j 02 -a tune=iq -q 60 -d 10 -s 0 -y 444 {} {.}.avif; echo "# # # # Finish # # # #"
Beta Was this translation helpful? Give feedback.
All reactions