Recherche avancée

Médias (1)

Mot : - Tags -/Christian Nold

Autres articles (99)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

  • 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

Sur d’autres sites (10232)

  • Why use sysconf(_SC_NPROCESSORS_CONF) to get the number of CPU cores in x264 ?

    5 novembre 2017, par bknieven

    I find x264 use sysconf(_SC_NPROCESSORS_CONF) instead of sysconf(SC_NPROCESSORS_ONLN) to get the number of CPU cores.

    Here is the code snippet in x264/common/cpu.c :

    ...
    #ifdef __ANDROID__
       // Android NDK does not expose sched_getaffinity
       return sysconf( _SC_NPROCESSORS_CONF );
    #else
       ...
    ....

    And I find the difference between _SC_NPROCESSORS_CONF and _SC_NPROCESSORS_ONLN in this manual :

    sysconf (_SC_NPROCESSORS_CONF) which returns the number of processors
    the operating system configured. But it might be possible for the
    operating system to disable individual processors and so the call
    sysconf (_SC_NPROCESSORS_ONLN) returns the number of processors which
    are currently online (i.e., available).

    I have two questions :

    1. What is the difference between "the number of processors the operating system configured" and "the number of processors which are currently online" ?
    2. Why x264 use _SC_NPROCESSORS_CONF in Android to get the number of CPU cores ?
  • How to save a vedostream on an event using ffmpeg

    26 janvier 2015, par Ludo

    I want to record short video sequences of an online stream (IP CCTV or Internet) on a defined event.

    For example : I want to have two minutes before and one minute after an event occures stored in a output file.

    Is it possible to do this using ffmpeg (avconv) and what are the parameters to use.

    Thanks for your help !

  • 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");