Recherche avancée

Médias (91)

Autres articles (61)

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

  • 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

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

Sur d’autres sites (7188)

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

  • http: Send a Range header even when the offset is 0

    2 février 2022, par Justin Ruggles
    http: Send a Range header even when the offset is 0
    

    Using Range allows for getting the full file size from the
    Content-Range header in the response, even if the server sends
    back the response using chunked Transfer-Encoding, which does not
    allow using Content-Length.

    • [DH] libavformat/http.c