Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP

Autres articles (101)

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

  • 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

  • Participer à sa documentation

    10 avril 2011

    La documentation est un des travaux les plus importants et les plus contraignants lors de la réalisation d’un outil technique.
    Tout apport extérieur à ce sujet est primordial : la critique de l’existant ; la participation à la rédaction d’articles orientés : utilisateur (administrateur de MediaSPIP ou simplement producteur de contenu) ; développeur ; la création de screencasts d’explication ; la traduction de la documentation dans une nouvelle langue ;
    Pour ce faire, vous pouvez vous inscrire sur (...)

Sur d’autres sites (4727)

  • How to show the camera preview always in the Spydroid-ffmpeg project

    11 avril 2013, par user2182013

    I'm tring to readapt the https://github.com/vanevery/spyd-ffmpeg project to my own. This project streams the video and/or audio captured by the phone camera via rtsp and it can be received in a computer or so running vlc or similar. My problem is that the app just shows the preview of the camera when receives a connection, but I'd like to show it always. I've tried hundred of things but it always crashes. I cannot find any startPreview() or similar method and I don't know where exactly in the code it is started in order to modify it. Any clue ?

    Thanks.

  • ffprobe : show bitmap subtitles size.

    3 septembre 2013, par Nicolas George
    ffprobe : show bitmap subtitles size.
    

    Fix trac ticket #2930.

    • [DH] ffprobe.c
  • How to show watermark in real time with ffmpeg by Node JS & Angular JS

    29 juillet 2016, par Md. Nazmul Hossain Bilash

    I am working with ffmpeg. I have already worked with watermark by ffmpeg. In my process, I have saved that video(which is marked with watermark) & then I am able to show that video. But I want to show watermark in real time. How can I able this ? Need help for this real time show.

    Here is my code :

           try {
               var process = new ffmpeg('public/'+req.body.video);
               process.then(function (video) {
                 console.log('The video is ready to be processed');
                 var watermarkPath = 'public/images/logo.png',
                   newFilepath = 'public/videos/watermarked/'+name,
                   settings = {
                       position        : "SC"      // Position: NE NC NW SE SC SW C CE CW
                     , margin_nord     : null      // Margin nord
                     , margin_sud      : null      // Margin sud
                     , margin_east     : null      // Margin east
                     , margin_west     : null      // Margin west
                   };
                 var callback = function (error, files) {
                   if(error){
                     console.log('ERROR: ', error);
                   }
                   else{
                     console.log('TERMINOU', files);
                     res.send('videos/watermarked/'+name)
                   }
                 }
                 //add watermark
                 video.fnAddWatermark(watermarkPath, newFilepath, settings, callback)

               }, function (err) {
                 console.log('Error: ' + err);
               });
             } catch (e) {
               console.log(e.code);
               console.log(e.msg);
             }