Recherche avancée

Médias (91)

Autres articles (44)

  • 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é.

  • Les vidéos

    21 avril 2011, par

    Comme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
    Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
    Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

Sur d’autres sites (4216)

  • How can I do videos into a better format without losing resolution and quality ?

    3 juillet 2020, par Melissa

    I have the job of developing a video converter program. I started to do a lot of research and development on this subject. I currently have a problem like this. The videos of the institution where I developed the converter are in mxf 50 megabit 4 : 2 : 2 format.
They want me to turn these videos into a better format without losing resolution and quality. For example, they said I could try h.265. In my work, the resolution and the quality of the video change in direct proportion when the format changes, how can I overcome this with an algorithm ? As I have just learned about the FFMPEG library, my view may be limited in this area. I am waiting for your help.

    


  • How to merge 4 transparent videos so they stack together

    26 septembre 2022, par Xiang Chen

    I have 4 transparent videos with the same size, and the duration is just four seconds. They are all in webm format. I want to combine these 4 webm videos.

    


    I used terminal command :

    


    ffmpeg -c:v libvpx-vp9 -i 1.webm -c:v libvpx-vp9 -i 2.webm -filter_complex overlay aa.webm
ffmpeg -c:v libvpx-vp9 -i 3.webm -c:v libvpx-vp9 -i 4.webm -filter_complex overlay bb.webm
ffmpeg -c:v libvpx-vp9 -i aa.webm -c:v libvpx-vp9 -i bb.webm -filter_complex overlay output.webm


    


    Is there a solution here that can be solved in one sentence ? A simpler solution that would stack these four videos for 4 seconds and maintain transparency ?

    


  • FFMPEG : Videos converted from FLV to MP4 does not play in iPod but works in iPhone

    3 juin 2012, par Shakti Singh

    I used below command to convert videos from FLV,M4V to MP4.

    ffmpeg -y -i video_1336406262.flv -vcodec libx264 -vpre slow -vpre
    ipod640 -b 250k -bt 50k -acodec libfaac -ac 2 -ar 48000 -ab 64k -s
    480x320 video_1336406262.mp4

    The videos converted from M4V to MP4 are playing very well in both iPhone and iPod but the videos converted from FLV to MP4 does not work in iPod but does in iPhone.

    In the video area of HTML5 page iPod even does not show the play symbol.

    Could someone help here ?

    I am using the same command to convert from both FLV and M4V to MP4.

    Thanks