Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

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

Autres articles (73)

  • 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" (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

Sur d’autres sites (8262)

  • OpenIMAJ not able to access video file

    20 septembre 2014, par Sudh

    I am using OpenIMAJ to draw facial keypoints on a video but it is stuck at the first step itself.
    Here is the code I am trying to run: :

    Video<mbfimage> video;
       video = new XuggleVideo("file://E:/AV/out2.flv");//XuggleVideo("file:"+fileName);
       VideoDisplay<mbfimage> display = VideoDisplay.createVideoDisplay(video);
       display.addVideoListener(
                new VideoDisplayListener<mbfimage>() {
                       public void beforeUpdate( MBFImage frame ) {

                           FaceDetector fd = new HaarCascadeDetector(40);
                           List<detectedface> faces = fd.detectFaces( Transforms.calculateIntensity(frame));

                           for( DetectedFace face : faces ) {
                               frame.drawShape(face.getBounds(), RGBColour.RED);
                           }
                       }

                       public void afterUpdate( VideoDisplay<mbfimage> display ) {
                       }
         });
    </mbfimage></detectedface></mbfimage></mbfimage></mbfimage>

    When I run this It prints

    file :///E :/AV/out2.flv URL file :///E :/AV/out2.flv could not be opened
    by ffmpeg. Trying to open a stream to the URL instead. 11:14:12.505
    [Finalizer] DEBUG com.xuggle.xuggler - Closing dangling Container
    (../../../../../../../csrc/com/xuggle/xuggler/Container.cpp:146)

    on the screen and then just dies out. result is same if I use video = new XuggleVideo(new File("E :/AV/out2.flv")) ;

    Also if I keep file in the project and then do video = new XuggleVideo(new File("out2.flv")) ; I get same result.

    I am able to access the file if I put the link in the browser. What is going wrong ?

    Update : I get just this

    out2.flv 12:03:06.485 [Finalizer] DEBUG com.xuggle.xuggler - Closing
    dangling Container
    (../../../../../../../csrc/com/xuggle/xuggler/Container.cpp:146)

    If I use video = new XuggleVideo("out2.flv");

  • fftools/ffmpeg : reduce access to OutputStream.enc_ctx

    20 avril 2023, par Anton Khirnov
    fftools/ffmpeg : reduce access to OutputStream.enc_ctx
    

    It will be made private to Encoder in the future.

    • [DH] fftools/ffmpeg.c
    • [DH] fftools/ffmpeg_mux.c
  • vulkan : synchronize access to execution pool fences

    6 juin 2023, par Lynne
    vulkan : synchronize access to execution pool fences
    

    vkResetFences is specified as being user-synchronized
    (yet vkWaitFences, is not).

    • [DH] libavutil/vulkan.c
    • [DH] libavutil/vulkan.h