Recherche avancée

Médias (91)

Autres articles (42)

  • MediaSPIP : Modification des droits de création d’objets et de publication définitive

    11 novembre 2010, par

    Par défaut, MediaSPIP permet de créer 5 types d’objets.
    Toujours par défaut les droits de création et de publication définitive de ces objets sont réservés aux administrateurs, mais ils sont bien entendu configurables par les webmestres.
    Ces droits sont ainsi bloqués pour plusieurs raisons : parce que le fait d’autoriser à publier doit être la volonté du webmestre pas de l’ensemble de la plateforme et donc ne pas être un choix par défaut ; parce qu’avoir un compte peut servir à autre choses également, (...)

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (8482)

  • 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);
             }
  • avcodec/jpeg2000dec : Show the progression order at debug level for all variants

    14 juin 2015, par Michael Niedermayer
    avcodec/jpeg2000dec : Show the progression order at debug level for all variants
    

    It was previously shown just for some, this makes it consistent

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavcodec/jpeg2000dec.c
  • burning subtitles onto mp4, such that they always show, and cannot be turned off

    27 janvier 2021, par Plazar99

    I have successfully create a command line that allows subtitles to be displayed, I can see them when I select the track number in VLC. What I would like is to burn the subtitles such that they always show when the mp4 is played by any player, and not provide the option to be turned off. All i need is a clue to pursue. does ffmpeg have an option to do this.&#xA;Thanks.

    &#xA;