Recherche avancée

Médias (1)

Mot : - Tags -/illustrator

Autres articles (68)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

  • Le plugin : Gestion de la mutualisation

    2 mars 2010, par

    Le plugin de Gestion de mutualisation permet de gérer les différents canaux de mediaspip depuis un site maître. Il a pour but de fournir une solution pure SPIP afin de remplacer cette ancienne solution.
    Installation basique
    On installe les fichiers de SPIP sur le serveur.
    On ajoute ensuite le plugin "mutualisation" à la racine du site comme décrit ici.
    On customise le fichier mes_options.php central comme on le souhaite. Voilà pour l’exemple celui de la plateforme mediaspip.net :
    < ?php (...)

  • Gestion de la ferme

    2 mars 2010, par

    La ferme est gérée dans son ensemble par des "super admins".
    Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
    Dans un premier temps il utilise le plugin "Gestion de mutualisation"

Sur d’autres sites (6681)

  • Output file does not show up after executing ffmpeg command [closed]

    19 février 2024, par davai

    I'm using ffmpeg to combine an MP3 + G file and produce an MP4 file. I've placed the source code / .exe file for 'ffmpeg' in the project folder, and the MP3 + G files are also in the project folder. I also set the MP4 output to show up in the project folder as well. The weird thing is that, initially, I was producing output files, and while trying to tweak the constant rate factor, the MP4 output just stopped showing up entirely. I'm also not receiving any errors while running the code, and it does print out that the file has been successfully created, despite nothing showing up in the project folder.

    &#xA;

    &#xA;        String mp3FilePath = "C:/Users/exampleuser/pfolder/example.mp3";&#xA;        String gFilePath = "C:/Users/exampleuser/pfolder/example.cdg";&#xA;        String mp4OutputPath = "C:/Users/exampleuser/pfolder/example.mp4";&#xA;&#xA;        try&#xA;        {&#xA;            String[] command = {&#xA;                    "C:/Users/tonih/IdeaProjects/MP3GtoMP4Conversion/ffmpeg/ffmpeg-2024-02-19-git-0c8e64e268-full_build/bin/ffmpeg.exe",&#xA;                    "-i", mp3FilePath,       // Input MP3 file&#xA;                    "-r", "25",              // Frame rate&#xA;                    "-loop", "1",            // Loop input video&#xA;                    "-i", gFilePath,         // Input G file&#xA;                    "-c:v", "libx264",       // Video codec&#xA;                    "-preset", "slow",       // Encoding preset for quality (choose according to your requirement)&#xA;                    "-crf", "18",            // Constant Rate Factor (lower is higher quality, typical range 18-28)&#xA;                    "-c:a", "aac",           // Audio codec&#xA;                    "-b:a", "320k",          // Audio bitrate&#xA;                    "-shortest",             // Stop when the shortest stream ends&#xA;                    mp4OutputPath            // Output MP4 file&#xA;            };&#xA;&#xA;            Process process = Runtime.getRuntime().exec(command);&#xA;            process.waitFor();&#xA;            System.out.println("MP4 file created successfully: " &#x2B; mp4OutputPath);&#xA;        }&#xA;        catch (IOException | InterruptedException e)&#xA;        {&#xA;            e.printStackTrace();&#xA;        }&#xA;

    &#xA;

  • Flutter ffmpeg_kit_flutter_new can't build Android app in any version

    3 juillet, par user31929

    I can't build my project on Android ( on Ios it works and the project itself without ffmpeg_kit_flutter_new builds without problems )&#xA;This is the error i obtain :

    &#xA;

    /GeneratedPluginRegistrant.java:51: error: cannot find symbol&#xA;      com.antonkarpenko.ffmpegkit.MainActivity.registerWith(shimPluginRegistry.registrarFor("com.antonkarpenko.ffmpegkit.MainActivity"));&#xA;                                 ^&#xA;  symbol:   class MainActivity&#xA;  location: package com.antonkarpenko.ffmpegkit&#xA;

    &#xA;

    This is my flutter doctor :

    &#xA;

    [✓] Flutter (Channel stable, 3.19.4, on macOS 15.4.1 24E263 darwin-x64, locale it-IT)&#xA;    • Flutter version 3.19.4 on channel stable at ….&#xA;    • Upstream repository https://github.com/flutter/flutter.git&#xA;    • Framework revision 68bfaea224 (1 year, 2 months ago), 2024-03-20 15:36:31 -0700&#xA;    • Engine revision a5c24f538d&#xA;    • Dart version 3.3.2&#xA;    • DevTools version 2.31.1&#xA;&#xA;[✓] Android toolchain - develop for Android devices (Android SDK version 34.0.0)&#xA;    • Android SDK at …..&#xA;    • Platform android-35, build-tools 34.0.0&#xA;    • Java binary at: /Applications/Android Studio.app/Contents/jbr/Contents/Home/bin/java&#xA;    • Java version OpenJDK Runtime Environment (build 17.0.7&#x2B;0-17.0.7b1000.6-10550314)&#xA;    • All Android licenses accepted.&#xA;&#xA;[✓] Xcode - develop for iOS and macOS (Xcode 16.3)&#xA;    • Xcode at /Applications/Xcode.app/Contents/Developer&#xA;    • Build 16E140&#xA;    • CocoaPods version 1.16.2&#xA;&#xA;[✓] Chrome - develop for the web&#xA;    • Chrome at /Applications/Google Chrome.app/Contents/MacOS/Google Chrome&#xA;&#xA;[✓] Android Studio (version 2023.1)&#xA;    • Android Studio at /Applications/Android Studio.app/Contents&#xA;    • Flutter plugin can be installed from:&#xA;      &#128296; https://plugins.jetbrains.com/plugin/9212-flutter&#xA;    • Dart plugin can be installed from:&#xA;      &#128296; https://plugins.jetbrains.com/plugin/6351-dart&#xA;    • Java version OpenJDK Runtime Environment (build 17.0.7&#x2B;0-17.0.7b1000.6-10550314)&#xA;&#xA;[✓] VS Code (version 1.99.3)&#xA;    • VS Code at /Applications/Visual Studio Code.app/Contents&#xA;    • Flutter extension version 3.110.0&#xA;&#xA;[✓] Connected device (5 available)&#xA;    • SM A135F (mobile)              • RF8T40TMS6Z               • android-arm    • Android 12 (API 31)&#xA;    • cri SE 128 (mobile)      • 00008030-001268303E38402E • ios            • iOS 18.4.1 22E252&#xA;    • iPhone di WacMini (mobile) • 00008030-00121D543CE8802E • ios            • iOS 18.4.1 22E252&#xA;    • macOS (desktop)                • macos                     • darwin-x64     • macOS 15.4.1 24E263 darwin-x64&#xA;    • Chrome (web)                   • chrome                    • web-javascript • Google Chrome 136.0.7103.93&#xA;&#xA;[✓] Network resources&#xA;    • All expected network resources are available.&#xA;

    &#xA;

    My android/app/build.gradle

    &#xA;

    def localProperties = new Properties()&#xA;def localPropertiesFile = rootProject.file(&#x27;local.properties&#x27;)&#xA;if (localPropertiesFile.exists()) {&#xA;    localPropertiesFile.withReader(&#x27;UTF-8&#x27;) { reader ->&#xA;        localProperties.load(reader)&#xA;    }&#xA;}&#xA;&#xA;def keystoreProperties = new Properties()&#xA;def keystorePropertiesFile = rootProject.file(&#x27;key.properties&#x27;)&#xA;if (keystorePropertiesFile.exists()) {&#xA;    keystoreProperties.load(new FileInputStream(keystorePropertiesFile))&#xA;}&#xA;&#xA;def flutterRoot = localProperties.getProperty(&#x27;flutter.sdk&#x27;)&#xA;if (flutterRoot == null) {&#xA;    throw new GradleException("Flutter SDK not found. Define location with flutter.sdk in the local.properties file.")&#xA;}&#xA;&#xA;def flutterVersionCode = localProperties.getProperty(&#x27;flutter.versionCode&#x27;)&#xA;if (flutterVersionCode == null) {&#xA;    flutterVersionCode = &#x27;1&#x27;&#xA;}&#xA;&#xA;def flutterVersionName = localProperties.getProperty(&#x27;flutter.versionName&#x27;)&#xA;if (flutterVersionName == null) {&#xA;    flutterVersionName = &#x27;1.0&#x27;&#xA;}&#xA;&#xA;apply plugin: &#x27;com.android.application&#x27;&#xA;apply plugin: &#x27;kotlin-android&#x27;&#xA;apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle"&#xA;apply plugin: &#x27;com.google.gms.google-services&#x27;&#xA;apply plugin: &#x27;com.google.firebase.crashlytics&#x27;&#xA;apply plugin: &#x27;org.jetbrains.kotlin.android&#x27;&#xA;&#xA;&#xA;android {&#xA;&#xA;    compileSdkVersion 35&#xA;&#xA;    namespace = "com.app.app"&#xA;    sourceSets {&#xA;        main.java.srcDirs &#x2B;= &#x27;src/main/kotlin&#x27;&#xA;    }&#xA;&#xA;    defaultConfig {&#xA;        applicationId "com.appid.appid"&#xA;        minSdkVersion 24&#xA;        targetSdkVersion 35&#xA;        versionCode flutterVersionCode.toInteger()&#xA;        versionName flutterVersionName&#xA;       &#xA;        // insert this line of code in order to manage correct build abi configuration only on supported devices not supported tablet device emulator&#xA;       /* ndk {&#xA;            abiFilters &#x27;armeabi-v7a&#x27;, &#x27;arm64-v8a&#x27;, &#x27;x86_64&#x27;&#xA;        }*/&#xA;    }&#xA;&#xA;    signingConfigs {&#xA;        release {&#xA;            keyAlias keystoreProperties[&#x27;keyAlias&#x27;]&#xA;            keyPassword keystoreProperties[&#x27;keyPassword&#x27;]&#xA;            storeFile keystoreProperties[&#x27;storeFile&#x27;] ? file(keystoreProperties[&#x27;storeFile&#x27;]) : null&#xA;            storePassword keystoreProperties[&#x27;storePassword&#x27;]&#xA;        }&#xA;    }&#xA;&#xA;    buildTypes {&#xA;        debug {&#xA;            debuggable true&#xA;        }&#xA;&#xA;        release {&#xA;            signingConfig signingConfigs.release&#xA;            debuggable false&#xA;            shrinkResources true&#xA;            minifyEnabled true&#xA;            proguardFiles getDefaultProguardFile(&#x27;proguard-android.txt&#x27;), &#x27;proguard-rules.pro&#x27;&#xA;        }&#xA;    }&#xA;&#xA;}&#xA;&#xA;flutter {&#xA;    source &#x27;../..&#x27;&#xA;}&#xA;&#xA;dependencies {&#xA;    implementation "org.jetbrains.kotlin:kotlin-stdlib:1.9.24"&#xA;}&#xA;

    &#xA;

    My android/build.gradle

    &#xA;

    buildscript {&#xA;    ext.kotlin_version = &#x27;1.9.24&#x27;&#xA;    repositories {&#xA;        google()&#xA;        mavenCentral()&#xA;        jcenter()&#xA;    }&#xA;&#xA;    dependencies {&#xA;        classpath &#x27;com.android.tools.build:gradle:8.4.0&#x27;&#xA;        classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"&#xA;        classpath &#x27;com.google.gms:google-services:4.3.14&#x27;&#xA;        classpath &#x27;com.google.firebase:firebase-crashlytics-gradle:2.7.1&#x27;&#xA;    }&#xA;}&#xA;&#xA;allprojects {&#xA;    repositories {&#xA;        google()&#xA;        mavenCentral()&#xA;        jcenter()&#xA;    }&#xA;&#xA;    &#xA;    subprojects {&#xA;        tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile) {&#xA;            kotlinOptions.jvmTarget = "1.8"&#xA;        }&#xA;        afterEvaluate { project ->&#xA;            if (project.hasProperty(&#x27;android&#x27;)) {&#xA;                project.android {&#xA;                    if (namespace == null) {&#xA;                        namespace project.group&#xA;                    }&#xA;                }&#xA;            }&#xA;        }&#xA;    }&#xA;    &#xA;}&#xA;&#xA;&#xA;ext {&#xA;    flutterFFmpegPackage = "min-gpl-lts"&#xA;}&#xA;&#xA;&#xA;rootProject.buildDir = &#x27;../build&#x27;&#xA;subprojects {&#xA;    project.buildDir = "${rootProject.buildDir}/${project.name}"&#xA;}&#xA;subprojects {&#xA;    project.evaluationDependsOn(&#x27;:app&#x27;)&#xA;}&#xA;&#xA;tasks.register("clean", Delete) {&#xA;    delete rootProject.buildDir&#xA;}&#xA;

    &#xA;

    My gradle.wrapper.properties

    &#xA;

    distributionBase=GRADLE_USER_HOME&#xA;distributionPath=wrapper/dists&#xA;zipStoreBase=GRADLE_USER_HOME&#xA;zipStorePath=wrapper/dists&#xA;distributionUrl=https\://services.gradle.org/distributions/gradle-8.6-all.zip&#xA;

    &#xA;

    What i have already tried :

    &#xA;

      &#xA;
    • flutter clean/flutter pub get
    • &#xA;

    • remove .gradle folder/flutter clean/flutter pub get
    • &#xA;

    • remove GeneratedPluginRegistrant.java file then remove .gradle/flutter clean/flutter pub get
    • &#xA;

    &#xA;

    I have this issue in every version of the plugin. There is something wrong in my configurations or maybe this is a plugin issue ?

    &#xA;

  • Can't set seeker in GSTREAMER cv2, python

    29 avril, par Alperen Ölçer

    I want to skip n seconds forward and backward in gstreamer cv2 capture for recorded videos. But when I use cap_gstreamer.set(cv2.CAP_PROP_POS_FRAMES, fps*skip_second) it resets seeker to beginning of video. How can I solve it ? I wrote an example, used recorded clock video.

    &#xA;

    import cv2&#xA;&#xA;video_p = &#x27;/home/alperenlcr/Videos/clock.mp4&#x27;&#xA;&#xA;cap_gstreamer = cv2.VideoCapture(video_p, cv2.CAP_GSTREAMER)&#xA;cap_ffmpeg = cv2.VideoCapture(video_p, cv2.CAP_FFMPEG)&#xA;&#xA;fps = cap_gstreamer.get(cv2.CAP_PROP_FPS)&#xA;skip_second = 100&#xA;&#xA;im1 = cv2.resize(cap_gstreamer.read()[1], (960, 540))&#xA;im1_ffmpeg = cv2.resize(cap_ffmpeg.read()[1], (960, 540))&#xA;&#xA;cap_gstreamer.set(cv2.CAP_PROP_POS_FRAMES, fps*skip_second)&#xA;cap_ffmpeg.set(cv2.CAP_PROP_POS_FRAMES, fps*skip_second)&#xA;&#xA;im2 = cv2.resize(cap_gstreamer.read()[1], (960, 540))&#xA;im2_ffmpeg = cv2.resize(cap_ffmpeg.read()[1], (960, 540))&#xA;&#xA;merge_gstreamer = cv2.hconcat([im1, im2])&#xA;merge_ffmpeg = cv2.hconcat([im1_ffmpeg, im2_ffmpeg])&#xA;&#xA;cv2.imshow(str(skip_second) &#x2B; &#x27; gstreamer&#x27;, merge_gstreamer)&#xA;cv2.imshow(str(skip_second) &#x2B; &#x27; ffmpeg&#x27;, merge_ffmpeg)&#xA;cv2.waitKey(0)&#xA;cv2.destroyAllWindows()&#xA;&#xA;cap_gstreamer.release()&#xA;cap_ffmpeg.release()&#xA;&#xA;

    &#xA;

    Result :&#xA;enter image description here

    &#xA;

    My cv2 build is like :

    &#xA;

    >>> print(cv2.getBuildInformation())&#xA;&#xA;General configuration for OpenCV 4.8.1 =====================================&#xA;  Version control:               4.8.1-dirty&#xA;&#xA;  Extra modules:&#xA;    Location (extra):            /home/alperenlcr/SourceInstalls/opencv_contrib/modules&#xA;    Version control (extra):     4.8.1&#xA;&#xA;  Platform:&#xA;    Timestamp:                   2024-12-02T13:44:58Z&#xA;    Host:                        Linux 6.8.0-49-generic x86_64&#xA;    CMake:                       3.22.1&#xA;    CMake generator:             Unix Makefiles&#xA;    CMake build tool:            /usr/bin/gmake&#xA;    Configuration:               RELEASE&#xA;&#xA;  CPU/HW features:&#xA;    Baseline:                    SSE SSE2 SSE3&#xA;      requested:                 SSE3&#xA;    Dispatched code generation:  SSE4_1 SSE4_2 FP16 AVX AVX2 AVX512_SKX&#xA;      requested:                 SSE4_1 SSE4_2 AVX FP16 AVX2 AVX512_SKX&#xA;      SSE4_1 (18 files):         &#x2B; SSSE3 SSE4_1&#xA;      SSE4_2 (2 files):          &#x2B; SSSE3 SSE4_1 POPCNT SSE4_2&#xA;      FP16 (1 files):            &#x2B; SSSE3 SSE4_1 POPCNT SSE4_2 FP16 AVX&#xA;      AVX (8 files):             &#x2B; SSSE3 SSE4_1 POPCNT SSE4_2 AVX&#xA;      AVX2 (37 files):           &#x2B; SSSE3 SSE4_1 POPCNT SSE4_2 FP16 FMA3 AVX AVX2&#xA;      AVX512_SKX (8 files):      &#x2B; SSSE3 SSE4_1 POPCNT SSE4_2 FP16 FMA3 AVX AVX2 AVX_512F AVX512_COMMON AVX512_SKX&#xA;&#xA;  C/C&#x2B;&#x2B;:&#xA;    Built as dynamic libs?:      NO&#xA;    C&#x2B;&#x2B; standard:                11&#xA;    C&#x2B;&#x2B; Compiler:                /usr/bin/c&#x2B;&#x2B;  (ver 10.5.0)&#xA;    C&#x2B;&#x2B; flags (Release):         -fsigned-char -ffast-math -W -Wall -Wreturn-type -Wnon-virtual-dtor -Waddress -Wsequence-point -Wformat -Wformat-security -Wmissing-declarations -Wundef -Winit-self -Wpointer-arith -Wshadow -Wsign-promo -Wuninitialized -Wsuggest-override -Wno-delete-non-virtual-dtor -Wno-comment -Wimplicit-fallthrough=3 -Wno-strict-overflow -fdiagnostics-show-option -Wno-long-long -pthread -fomit-frame-pointer -ffunction-sections -fdata-sections  -msse -msse2 -msse3 -fvisibility=hidden -fvisibility-inlines-hidden -O3 -DNDEBUG  -DNDEBUG&#xA;    C&#x2B;&#x2B; flags (Debug):           -fsigned-char -ffast-math -W -Wall -Wreturn-type -Wnon-virtual-dtor -Waddress -Wsequence-point -Wformat -Wformat-security -Wmissing-declarations -Wundef -Winit-self -Wpointer-arith -Wshadow -Wsign-promo -Wuninitialized -Wsuggest-override -Wno-delete-non-virtual-dtor -Wno-comment -Wimplicit-fallthrough=3 -Wno-strict-overflow -fdiagnostics-show-option -Wno-long-long -pthread -fomit-frame-pointer -ffunction-sections -fdata-sections  -msse -msse2 -msse3 -fvisibility=hidden -fvisibility-inlines-hidden -g  -O0 -DDEBUG -D_DEBUG&#xA;    C Compiler:                  /usr/bin/cc&#xA;    C flags (Release):           -fsigned-char -ffast-math -W -Wall -Wreturn-type -Waddress -Wsequence-point -Wformat -Wformat-security -Wmissing-declarations -Wmissing-prototypes -Wstrict-prototypes -Wundef -Winit-self -Wpointer-arith -Wshadow -Wuninitialized -Wno-comment -Wimplicit-fallthrough=3 -Wno-strict-overflow -fdiagnostics-show-option -Wno-long-long -pthread -fomit-frame-pointer -ffunction-sections -fdata-sections  -msse -msse2 -msse3 -fvisibility=hidden -O3 -DNDEBUG  -DNDEBUG&#xA;    C flags (Debug):             -fsigned-char -ffast-math -W -Wall -Wreturn-type -Waddress -Wsequence-point -Wformat -Wformat-security -Wmissing-declarations -Wmissing-prototypes -Wstrict-prototypes -Wundef -Winit-self -Wpointer-arith -Wshadow -Wuninitialized -Wno-comment -Wimplicit-fallthrough=3 -Wno-strict-overflow -fdiagnostics-show-option -Wno-long-long -pthread -fomit-frame-pointer -ffunction-sections -fdata-sections  -msse -msse2 -msse3 -fvisibility=hidden -g  -O0 -DDEBUG -D_DEBUG&#xA;    Linker flags (Release):      -Wl,--exclude-libs,libippicv.a -Wl,--exclude-libs,libippiw.a   -Wl,--gc-sections -Wl,--as-needed -Wl,--no-undefined  &#xA;    Linker flags (Debug):        -Wl,--exclude-libs,libippicv.a -Wl,--exclude-libs,libippiw.a   -Wl,--gc-sections -Wl,--as-needed -Wl,--no-undefined  &#xA;    ccache:                      NO&#xA;    Precompiled headers:         NO&#xA;    Extra dependencies:          /usr/lib/x86_64-linux-gnu/libjpeg.so /usr/lib/x86_64-linux-gnu/libpng.so /usr/lib/x86_64-linux-gnu/libtiff.so /usr/lib/x86_64-linux-gnu/libz.so /usr/lib/x86_64-linux-gnu/libfreetype.so /usr/lib/x86_64-linux-gnu/libharfbuzz.so Iconv::Iconv m pthread cudart_static dl rt nppc nppial nppicc nppidei nppif nppig nppim nppist nppisu nppitc npps cublas cudnn cufft -L/usr/lib/x86_64-linux-gnu -L/usr/lib/cuda/lib64&#xA;    3rdparty dependencies:       libprotobuf ade ittnotify libwebp libopenjp2 IlmImf quirc ippiw ippicv&#xA;&#xA;  OpenCV modules:&#xA;    To be built:                 aruco bgsegm bioinspired calib3d ccalib core cudaarithm cudabgsegm cudafeatures2d cudafilters cudaimgproc cudalegacy cudaobjdetect cudaoptflow cudastereo cudawarping cudev datasets dnn dnn_objdetect dnn_superres dpm face features2d flann freetype fuzzy gapi hfs highgui img_hash imgcodecs imgproc intensity_transform line_descriptor mcc ml objdetect optflow phase_unwrapping photo plot python3 quality rapid reg rgbd saliency shape stereo stitching structured_light superres surface_matching text tracking ts video videoio videostab wechat_qrcode xfeatures2d ximgproc xobjdetect xphoto&#xA;    Disabled:                    cudacodec world&#xA;    Disabled by dependency:      -&#xA;    Unavailable:                 alphamat cvv hdf java julia matlab ovis python2 sfm viz&#xA;    Applications:                tests perf_tests examples apps&#xA;    Documentation:               NO&#xA;    Non-free algorithms:         NO&#xA;&#xA;  GUI:                           GTK2&#xA;    QT:                          NO&#xA;    GTK&#x2B;:                        YES (ver 2.24.33)&#xA;      GThread :                  YES (ver 2.72.4)&#xA;      GtkGlExt:                  NO&#xA;    OpenGL support:              NO&#xA;    VTK support:                 NO&#xA;&#xA;  Media I/O: &#xA;    ZLib:                        /usr/lib/x86_64-linux-gnu/libz.so (ver 1.2.11)&#xA;    JPEG:                        /usr/lib/x86_64-linux-gnu/libjpeg.so (ver 80)&#xA;    WEBP:                        build (ver encoder: 0x020f)&#xA;    PNG:                         /usr/lib/x86_64-linux-gnu/libpng.so (ver 1.6.37)&#xA;    TIFF:                        /usr/lib/x86_64-linux-gnu/libtiff.so (ver 42 / 4.3.0)&#xA;    JPEG 2000:                   build (ver 2.5.0)&#xA;    OpenEXR:                     build (ver 2.3.0)&#xA;    HDR:                         YES&#xA;    SUNRASTER:                   YES&#xA;    PXM:                         YES&#xA;    PFM:                         YES&#xA;&#xA;  Video I/O:&#xA;    DC1394:                      NO&#xA;    FFMPEG:                      YES&#xA;      avcodec:                   YES (58.134.100)&#xA;      avformat:                  YES (58.76.100)&#xA;      avutil:                    YES (56.70.100)&#xA;      swscale:                   YES (5.9.100)&#xA;      swresample:                YES (3.9.100)&#xA;    GStreamer:                   YES (1.20.3)&#xA;    v4l/v4l2:                    YES (linux/videodev2.h)&#xA;&#xA;  Parallel framework:            TBB (ver 2021.5 interface 12050)&#xA;&#xA;  Trace:                         YES (with Intel ITT)&#xA;&#xA;  Other third-party libraries:&#xA;    Intel IPP:                   2021.8 [2021.8.0]&#xA;           at:                   /home/alperenlcr/SourceInstalls/opencv/build/3rdparty/ippicv/ippicv_lnx/icv&#xA;    Intel IPP IW:                sources (2021.8.0)&#xA;              at:                /home/alperenlcr/SourceInstalls/opencv/build/3rdparty/ippicv/ippicv_lnx/iw&#xA;    VA:                          NO&#xA;    Lapack:                      NO&#xA;    Eigen:                       NO&#xA;    Custom HAL:                  NO&#xA;    Protobuf:                    build (3.19.1)&#xA;    Flatbuffers:                 builtin/3rdparty (23.5.9)&#xA;&#xA;  NVIDIA CUDA:                   YES (ver 11.5, CUFFT CUBLAS NVCUVID NVCUVENC FAST_MATH)&#xA;    NVIDIA GPU arch:             86&#xA;    NVIDIA PTX archs:&#xA;&#xA;  cuDNN:                         YES (ver 8.6.0)&#xA;&#xA;  OpenCL:                        YES (no extra features)&#xA;    Include path:                /home/alperenlcr/SourceInstalls/opencv/3rdparty/include/opencl/1.2&#xA;    Link libraries:              Dynamic load&#xA;&#xA;  ONNX:                          NO&#xA;&#xA;  Python 3:&#xA;    Interpreter:                 /usr/bin/python3 (ver 3.10.12)&#xA;    Libraries:                   /usr/lib/x86_64-linux-gnu/libpython3.10.so (ver 3.10.12)&#xA;    numpy:                       /usr/lib/python3/dist-packages/numpy/core/include (ver 1.21.5)&#xA;    install path:                lib/python3.10/dist-packages/cv2/python-3.10&#xA;&#xA;  Python (for build):            /usr/bin/python3&#xA;&#xA;  Java:                          &#xA;    ant:                         NO&#xA;    Java:                        NO&#xA;    JNI:                         NO&#xA;    Java wrappers:               NO&#xA;    Java tests:                  NO&#xA;&#xA;  Install to:                    /usr/local&#xA;-----------------------------------------------------------------&#xA;&#xA;

    &#xA;