Recherche avancée

Médias (0)

Mot : - Tags -/alertes

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (43)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

  • Possibilité de déploiement en ferme

    12 avril 2011, par

    MediaSPIP peut être installé comme une ferme, avec un seul "noyau" hébergé sur un serveur dédié et utilisé par une multitude de sites différents.
    Cela permet, par exemple : de pouvoir partager les frais de mise en œuvre entre plusieurs projets / individus ; de pouvoir déployer rapidement une multitude de sites uniques ; d’éviter d’avoir à mettre l’ensemble des créations dans un fourre-tout numérique comme c’est le cas pour les grandes plate-formes tout public disséminées sur le (...)

Sur d’autres sites (5345)

  • while uploading video get screen shots with ffmpeg tool & php [on hold]

    4 décembre 2014, par ilinkthreesixty

    Can you tell me what is ffmpeg and for which purposes it is used in or with PHP ... ?

    I wanna learn it to create thumbnails while uploading a video to rotate them when mouse is over the video when it is done, It’s an effect which is used on dailymotion and even facebook is using it on it’s Album when mouse is hover over a user Album it rotate the thumbnails so i want to learn how to get thumbnail screen shots on the flying while video is uploading ... Hope you have got me.

  • Mute the video stream and overlay the stream with a picture using ffmpeg

    20 novembre 2020, par cold_fire99

    I reveive a stream from OBS and want to mute it and overlay it with a partly transparent picture (png).

    


    Here is the command that I use (insite rtmp module of nginx), but this does not deliver an correct output stream :

    


    exec ffmpeg -f lavfi -i anullsrc=channel_layout=stereo:sample_rate=48000 -i rtmp ://localhost/live/$(name) -i /var/www/stream/facebook-overlay.png -filter_complex "[1:v][2:v] overlay=0:0" -pix_fmt yuv420p -c:a aac -map 0:a -ar 48000 -shortest -f flv rtmp ://127.0.0.1:1936/rtmp/$(name)

    


    Any ideas how this works to overlay with these 3 input streams ?

    


    br

    


  • RN 0.74.7 can't find repo for ffmpeg-kit-react-native 6.0.2

    30 avril, par user938363

    My React Native 0.74.7 (on MacOS) app has hard time to find the ffmpeg-kit-react-native repo when run-android. It constantly complains no repo found on maven. Here is the error when react-native run-android :

    


    * What went wrong:
Could not determine the dependencies of task ':app:processDebugResources'.
> Could not resolve all task dependencies for configuration ':app:debugRuntimeClasspath'.
   > Could not find com.arthenica:ffmpeg-kit-full-gpl:6.0.
     Searched in the following locations:
       - https://oss.sonatype.org/content/repositories/snapshots/com/arthenica/ffmpeg-kit-full-gpl/6.0/ffmpeg-kit-full-gpl-6.0.pom
       - https://repo.maven.apache.org/maven2/com/arthenica/ffmpeg-kit-full-gpl/6.0/ffmpeg-kit-full-gpl-6.0.pom
       - file:/Users/macbook/Documents/code/js/VmonFront/node_modules/jsc-android/dist/com/arthenica/ffmpeg-kit-full-gpl/6.0/ffmpeg-kit-full-gpl-6.0.pom
       - https://dl.google.com/dl/android/maven2/com/arthenica/ffmpeg-kit-full-gpl/6.0/ffmpeg-kit-full-gpl-6.0.pom
       - https://www.jitpack.io/com/arthenica/ffmpeg-kit-full-gpl/6.0/ffmpeg-kit-full-gpl-6.0.pom
     Required by:
         project :app > project :ffmpeg-kit-react-native


    


    In android/build.gradle, the repo was specified :

    


    buildscript {
    ext {
        buildToolsVersion = "34.0.0"
        minSdkVersion = 23
        compileSdkVersion = 34
        targetSdkVersion = 34
        ndkVersion = "26.1.10909125"
        kotlinVersion = "1.9.22"

        ffmpegKitPackage = "full-gpl"
    }

    repositories {
        google()
        mavenCentral()
        maven { url "https://jitpack.io" }
        // You can comment out the below line if it causes issues:
        maven { url 'https://maven.arthenica.com/public/' } //<<<===repo here
    }

    dependencies {
        classpath("com.android.tools.build:gradle")
        classpath("com.facebook.react:react-native-gradle-plugin")
        classpath("org.jetbrains.kotlin:kotlin-gradle-plugin")
    }
}


apply plugin: "com.facebook.react.rootproject"


    


    Also the following code is added to android/app/build.gradle :

    


    // 🔥 Add this block to override the wrong version in ffmpeg's gradle.properties
configurations.all {
    resolutionStrategy {
        force "com.arthenica:ffmpeg-kit-https:6.0". //<<<===6.0.2 or 6 didn't work
        force "com.arthenica:ffmpeg-kit-full-gpl:6.0" // Include if using other packages
    }
}


    


    The problem seems to be with RN 0.74.7 only, as my RN 0.78.0 with ffmpeg-kit-react-native installed was able to download full-gpl version and installed successfully. What is missing here to install ffmpeg-kit on RN 0.74.7 ?