Recherche avancée

Médias (1)

Mot : - Tags -/copyleft

Autres articles (75)

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

Sur d’autres sites (8858)

  • electronicarts vp6 : set duration of video stream

    22 mars 2012, par Paul B Mahol

    electronicarts vp6 : set duration of video stream

  • vqavideo : remove some superfluous " VQA video : "

    22 mars 2012, par Paul B Mahol

    vqavideo : remove some superfluous " VQA video : "

  • Trying to load a video file with ffmpeg using javacv

    11 mars 2012, par Takatakas

    I am trying to load a video file with javacv but I am facing some problems.

    I managed to compile an application that will show an image on screen so I assume that my setup is ok.

    The code I am using is the following.

    import java.io.File;

    import com.googlecode.javacv.CanvasFrame;
    import com.googlecode.javacv.FFmpegFrameGrabber;

    public class TestCV{

       public static void main(String[] args) throws Exception {

           File f = new File("input.mp4");
           FFmpegFrameGrabber grabber = new FFmpegFrameGrabber(f);

           final CanvasFrame canvas = new CanvasFrame("My Image");

           canvas.showImage(grabber.grab());

       }
    }

    Here is the error

    Exception in thread "main" java.lang.UnsatisfiedLinkError: C:\Users\takas\AppData\Local\Temp\jniavutil3690549951281752227.dll: Can't find dependent libraries
       at java.lang.ClassLoader$NativeLibrary.load(Native Method)
       at java.lang.ClassLoader.loadLibrary0(Unknown Source)
       at java.lang.ClassLoader.loadLibrary(Unknown Source)
       at java.lang.Runtime.load0(Unknown Source)
       at java.lang.System.load(Unknown Source)
       at com.googlecode.javacpp.Loader.load(Loader.java:337)
       at com.googlecode.javacpp.Loader.load(Loader.java:271)
       at com.googlecode.javacv.cpp.avutil.<clinit>(avutil.java:76)
       at java.lang.Class.forName0(Native Method)
       at java.lang.Class.forName(Unknown Source)
       at com.googlecode.javacpp.Loader.load(Loader.java:291)
       at com.googlecode.javacv.cpp.avcodec.<clinit>(avcodec.java:87)
       at com.googlecode.javacv.FFmpegFrameGrabber.<init>(FFmpegFrameGrabber.java:73)
       at com.googlecode.javacv.FFmpegFrameGrabber.<init>(FFmpegFrameGrabber.java:69)
       at tester.t.JavaFlow.main(JavaFlow.java:13)
    </init></init></clinit></clinit>

    Do I have to use separate ffmpeg dlls ? There is one ffmpeg dll in the opecv bin folder.

    If I have to do this I will need a better way to include them using eclipse. Until now I just add the folder to path variable. For example I added this to make opencv work.

    C :\opencv\build\common\tbb\ia32\vc10~;C :\opencv\build\x86\vc10\bin~;