Recherche avancée

Médias (91)

Autres articles (18)

  • L’agrémenter visuellement

    10 avril 2011

    MediaSPIP est basé sur un système de thèmes et de squelettes. Les squelettes définissent le placement des informations dans la page, définissant un usage spécifique de la plateforme, et les thèmes l’habillage graphique général.
    Chacun peut proposer un nouveau thème graphique ou un squelette et le mettre à disposition de la communauté.

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

  • Le plugin : Podcasts.

    14 juillet 2010, par

    Le problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
    Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
    Types de fichiers supportés dans les flux
    Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)

Sur d’autres sites (2638)

  • Using ffmpeg to play file on windows, should use directshow to render the decoded frame [on hold]

    22 juillet 2013, par Terry

    I want to write a video file player using ffmpeg(support many format).

    However ffmpeg(/ffplay.exe) using SDL to render the video frame and play the audio sound. I only want to support windows platform. I think the default windows technology/api is more suitalbe for me to render the decoded frame. Do you think so ?

    If so, should I use direct show, or just using direct draw for video frame and direct sound for audio frame.

    If using direct show, I think I need to wrapper a direct show source filter(/splitter), then pass down the decoded video/audio frame data to render filter.

    Please help me which is the best choice ?

  • How to Embed CEA-608 Subtitles in Video using FFMPEG

    25 septembre 2018, par Yogesh Agarwal

    How can i embed CEA 608 subtitles via ffmpeg in a video ? I have SRT file and i can embed that via ffmpeg but it doesnt show up in facebook. It requires a CEA 608 Format of subtitles to be embedded inorder to show up in streams.

    I am quite clueless here. I found libcaption plugin that can do it, but i am not sure how to install it as my repo doesnt have it. Any Pointers would greatly help me ! :)

    There is one more plugin

    libass

    which can hardcode but i am not comfortable using it.

  • How to display animated svg over video using ffmpeg ?

    27 mars 2023, par Shivam gupta

    I am trying to show animated svg above the video.
I am able to show svg over video but it is static means animation is not visible.

    


    I am able to achieve this by enabling enable-librsvg flag in ffmpeg and used below command to generate output

    


    ./ffmpeg -i ~/Downloads/video2.mp4 -i ~/Downloads/plant-2.svg -filter_complex "[0:v][1:v] overlay=0:0" -c:a copy output.mp4


    


    I am not sure what i am doing wrong due to which instead of animated svg static svg is coming.