ifeq ($(shell uname -o), Android)
LIBS += -landroid-shmem -liconv ../libbthread-master/jpt.a
endif
+ifeq ($(WANT_ESOUND),yes)
+LIBS += -lesd
+endif
LIBS += $(shared_libs)
LIBS += $(system_libs)
else
webm libsvtav1
-# this codec codes less than one frame per sec
-# and so even a few seconds of video can take
-# a very long time to encode
-# crf = 26
-# preset = 6
+# If you do not want 10 bit, switch pixel_format
+# to yuv420p which is standard 8 bit.
+crf = 35
+preset = 6
+pixel_format = yuv420p10le
https://cinelerra-gg.org/download/CinelerraGG_Manual.pdf
http://g-raffa.eu/Cinelerra/HOWTO/basics.html
.
+2024 September changes of note:
+ Updated libraries include: dcraw, flac, giflib,
+ openjpeg, tiff, svt_av1, and x264 to current latest.
2024 July changes of note:
All of the AppImages are now being built with x265
8/10/12 bit encode options (multibit).
ldLog() << LD_DEBUG << "File exists, skipping:" << to << std::endl;
return true;
}
-
+ #if BOOST_VERSION < 107400
bf::copy_file(from, to, bf::copy_option::overwrite_if_exists);
+ #else
+ bf::copy_file(from, to, bf::copy_options::overwrite_existing);
+ #endif
bf::permissions(to, addedPerms | bf::add_perms);
} catch (const bf::filesystem_error& e) {
ldLog() << LD_ERROR << "Failed to copy file" << from << "to" << to << LD_NO_SPACE << ":" << e.what() << std::endl;
+#include <algorithm>
#include <iostream>
#include <boost/filesystem/path.hpp>