Please refer to previous revisions if you know what to do.
The patch proposed was merged into kernel in 5.8 release, but no longer working as of linux 5.11
| #!/usr/bin/env python | |
| import cv2 | |
| import gi | |
| import numpy as np | |
| gi.require_version('Gst', '1.0') | |
| from gi.repository import Gst | |
| DESCRIPTION = \ | |
| "This script builds a tar'd bundle of Anaconda packages and their dependencies suitable for installing on an offline server." | |
| EPILOG = \ | |
| ''' | |
| The basic work flow is as follows, | |
| - The user manually runs a conda 'dry-run' install command on an online server to generate a json file containing the required packages and their dependency packages. | |
| - The script loads the 'dry-run' json file(s) and performs the following actions, | |
| - Create a 'channel' directory per online channel, as discovered from the json file(s). | |
| - Download the packages and their dependency packages into the channel directory. |
Most GStreamer examples found online are either for Linux or for gstreamer 0.10.
This particular release note seems to have covered important changes, such as:
Applying -v will print out useful information. And most importantly the negotiation results.
| import java.io.Writer; | |
| import java.lang.ref.WeakReference; | |
| import java.util.ArrayList; | |
| import javax.microedition.khronos.egl.EGL10; | |
| import javax.microedition.khronos.egl.EGL11; | |
| import javax.microedition.khronos.egl.EGLConfig; | |
| import javax.microedition.khronos.egl.EGLContext; | |
| import javax.microedition.khronos.egl.EGLDisplay; | |
| import javax.microedition.khronos.egl.EGLSurface; | |
| import javax.microedition.khronos.opengles.GL; |