Recherche avancée

Médias (3)

Mot : - Tags -/Valkaama

Autres articles (48)

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

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

  • Creating an FFMPEG command for setting all videos to the same size and adding an watermark ?

    23 avril 2024, par DigiDuncan

    I'm writing a Java app that uses at some point an ffMPEG command in the console. This command needs to do the following :

    


      

    • Take the input file from DDTV/episodes-unconverted/example.[mpg/avi]
    • 


    • Make it 1280x780. (If it's 4:3, add pillar boxes, if it's 16:9... just you know do nothing I guess)
    • 


    • Add the watermark DDTV/DDTVwatermark.png at 10px from the bottom, and 10px from the right, at 33% transparency to the video.
    • 


    • Output it to DDTV/episodes-converted/example.mpg
    • 


    


  • Creating an FFMPEG command for setting all videos to the same size and adding an watermark ?

    27 octobre 2015, par DigiDuncan

    I’m writing a Java app that uses at some point an ffMPEG command in the console. This command needs to do the following :

    • Take the input file from DDTV/episodes-unconverted/example.[mpg/avi]
    • Make it 1280x780. (If it’s 4:3, add pillar boxes, if it’s 16:9... just you know do nothing I guess)
    • Add the watermark DDTV/DDTVwatermark.png at 10px from the bottom, and 10px from the right, at 33% transparency to the video.
    • Output it to DDTV/episodes-converted/example.mpg

    Thank you so much !

  • Ffmpeg blur part of video interacively

    8 septembre 2020, par R N

    I want to blur part of live stream conditionally in realtime with ffmpeg.
    
I read about zeromq filter, but the output of ffmpeg -filters says that boxblur filter doesn't support commands. For example, I want to blur the bottom half of the video then after some time disable blur then blur all video.
    
How can I achieve this ?