Recherche avancée

Médias (91)

Autres articles (73)

  • Problèmes fréquents

    10 mars 2010, par

    PHP et safe_mode activé
    Une des principales sources de problèmes relève de la configuration de PHP et notamment de l’activation du safe_mode
    La solution consiterait à soit désactiver le safe_mode soit placer le script dans un répertoire accessible par apache pour le site

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • Récupération d’informations sur le site maître à l’installation d’une instance

    26 novembre 2010, par

    Utilité
    Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
    Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...)

Sur d’autres sites (11293)

  • Using Xuggler to detect Webcam with Java

    18 octobre 2012, par Oneiros

    I'm trying to use Xuggler library to handle webcam video stream in Java.

    My project contains these files :

    • Xuggler Jar (xuggle-xuggler-5.4.jar)
    • SLF4J Jars (required by Xuggler and downloadable here) :
      • jcl-over-slf4j-1.6.4.jar
      • jul-to-slf4j-1.6.4.jar
      • log4j-over-slf4j-1.6.4.jar
      • slf4j-api-1.6.4.jar
      • slf4j-ext-1.6.4.jar
      • slf4j-migrator-1.6.4.jar
      • slf4j-simple-1.6.4.jar
    • DisplayWebcamVideo.java as main class

    I run the main method using "vfwcap" and "0" as arguments.
    Application starts correctly, i can see myself from the webcam but it's just the first frame : the stream freezes and i see this output :

    5022 [Thread-3] ERROR org.ffmpeg - [vfwcap @ 000000000039A320] real-time buffer 75% full! frame dropped!

    5622 [Thread-3] ERROR org.ffmpeg - [vfwcap @ 000000000039A320] real-time buffer 85% full! frame dropped!

    6522 [Thread-3] ERROR org.ffmpeg - [vfwcap @ 000000000039A320] real-time buffer 95% full! frame dropped!

    6822 [Thread-3] ERROR org.ffmpeg - [vfwcap @ 000000000039A320] real-time buffer 101% full! frame dropped!

    6822 [Thread-3] ERROR org.ffmpeg - [vfwcap @ 000000000039A320] real-time buffer 101% full! frame dropped!

    What's the problem here ? :(

  • Unable to load ffmpeg shared library using JNI onLoad function [closed]

    14 novembre 2023, par user352290

    Unable to load ffmpeg shared library using JNI onLoad function in Android MIUI 12SKQ1. Android App was built using JDK 17 and uses com.arthenica:mobile-ffmpeg-full library (https://mvnrepository.com/artifact/com.arthenica/mobile-ffmpeg-full/4.4)

    


    Error message is attached, https://pasteboard.co/7SK6TR5FkxLM.png

    


    The library uses the following settings

    


    


    


    The App is built using targetSdkVersion="34"

    


  • How to Define filename on Batch Script with ffmpeg

    5 décembre 2020, par Daringbaaz Aashiq

    I am trying to Make a batch file which Can encode my videos using ffmpeg, but I want to define input videofile Name on output

    


    Currently I Had written simple line for Video input

    


    But When i Drop File on Batch script, it comes with Full Path and, I can't set full path as filename and looking for solution to set only filename on output

    


    set /p input=Drop File Here
ffmpeg -i "%input%" -c:v libx264 -b:v 1M -minrate 1M -maxrate 1M -preset medium -vf scale=1280:720 -c:a aac -b:a 64K "inputfilename_Newfile.mp4"