You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I just wanted to use record function in the humble-video library.
I only added humble-video in the maven pom.xml.
The exported file is too huge. It's about 144 MB.
Is there a way to build only I used classes?
The text was updated successfully, but these errors were encountered:
By default humble-video-all will include binaries for ALL operating systems (Windows 32 bit, Windows 64 bit, Linux 32 bit, Linux 64 bit, and MacOS 32 bit and 64 bit) because we can't tell which OS you're on. Humble has a lot of native (non-Java) code that needs to be compiled per operating system.
If you know you only need native bytes for a particular operating system, you can reduce your dependencies by depending on humble-video-noarch and then choosing the particular operating system versions you also need.
My fix is to lean-into maven, and now dragging a dependency on
`humble-video-all` will figure out what JVM you're running under
and only bring in the native code for the platform you're on.
If you want other profiles, run maven with -P... with the name of
the profile for the OS you want.
I just wanted to use record function in the humble-video library.
I only added humble-video in the maven pom.xml.
The exported file is too huge. It's about 144 MB.
Is there a way to build only I used classes?
The text was updated successfully, but these errors were encountered: