Recherche avancée

Médias (1)

Mot : - Tags -/remix

Autres articles (28)

  • Emballe Médias : Mettre en ligne simplement des documents

    29 octobre 2010, par

    Le plugin emballe médias a été développé principalement pour la distribution mediaSPIP mais est également utilisé dans d’autres projets proches comme géodiversité par exemple. Plugins nécessaires et compatibles
    Pour fonctionner ce plugin nécessite que d’autres plugins soient installés : CFG Saisies SPIP Bonux Diogène swfupload jqueryui
    D’autres plugins peuvent être utilisés en complément afin d’améliorer ses capacités : Ancres douces Légendes photo_infos spipmotion (...)

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

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

Sur d’autres sites (5247)

  • Subtitles and audio track option for Android Native player

    7 septembre 2012, par Balwant Kumar Singh

    How Can I provide the subtitle and audio track change option with Android native player ?
    Do I need to Integrate FFpmeg with the native player ? If yes then how I can do this ?

    The android version is 3.2

    Kindly reply...

  • Force graphic card or player to play at 25 fps even display is connected at 59.9

    15 novembre 2016, par Rkalkani

    My projector is connected at 1920x1080 59.9

    How I can force a graphic card to give output at 25fps or How I can play 25 fps video smoothly with 59.9 refresh rate.

    I used Blueray player and it is playing video smoothly at a constant rate.

    ( I am using MPV and ffmpeg player to play video on computer. )

  • Loseless FFMPEG compression that supports windows media player

    12 juin 2018, par nmr

    I am trying to create a movie file (avi, mp4, etc as long as it support windows media player) from a sequence of png files using ffmpeg.I am using C++ "System("ffmpeg command")" to create the movie files once I create the png files (this shouldn’t effect movie creation). I was able to create a .avi file using the following command,

    ffmpeg.exe -r 30 -i frame_%7d.png test1.avi

    Once you create the file it runs in windows media player but does not run in VLC. I have realized, it does lossy compression and the movie is not that high quality (quality decreases with frame rate). I want to have lossless compression (or no compression at all) but needs to be able to play in windows media player. So I tried the following commands,

    ffmpeg.exe -framerate 30 -i frame_%7d.png -codec copy test2.avi

    This file ran in VLC but didn’t run in windows media player. Then I tried put in "-pix_fmt yuv420p" but still couldn’t get it to run in windows media player.

    ffmpeg.exe -framerate 30 -pix_fmt yuv420p -i frame_%7d.png -codec copy test2.avi

    I have also tried using "ffv1" codec and it ran in VLC but not in windows media player

    ffmpeg.exe -i frame_%7d.png -c:v ffv1 -qscale:v 0 test4.avi

    So, how do I create a lossless movie file from a sequence of png files using ffmpeg that will run in windows media player ?