Recherche avancée

Médias (0)

Mot : - Tags -/interaction

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (47)

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

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

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

  • Rails : MP4 videos showing up blank in Firefox (but works in Chrome)

    10 février 2015, par Mark Boulder

    I got this Rails app with uploaded MP4 videos that play back just fine in Chrome - but why do they show up blank in Firefox ?

    The video appears on the page and plays just fine if I download it :

    <video loop="loop" src="/path/to/whatever.mp4?1234567"></video>

    From Rails I did :

    &lt;%= video_tag photo.attachment_url(:medium) %>

    I tried adding Mime::Type.register "video/mp4", :mp4 to config/initializers/mime_types.rb but to no avail.

    Live app : http://runnable.com/VNkNeJ9wpNZJBEma/paperclip-mp4-problem

    Click Run and navigate to the last post to see the MP4. Note that Runnable is very slow. If it says something bad happened in the terminal, try reloading the page until it disappears.

  • mov : Free intermediate arrays in the normal cleanup function

    13 janvier 2014, par Martin Storsjö
    mov : Free intermediate arrays in the normal cleanup function
    

    These arrays are normally freed at the end of mov_read_trak,
    but make sure they’re freed in case mov_read_trak returned
    early (due to errors) or in case the atoms that allocate arrays
    are encountered at some other point than within a trak (which
    we don’t have checks against).

    Sample-Id : 00000496-google
    Reported-by : Mateusz "j00ru" Jurczyk and Gynvael Coldwind
    CC : libav-stable@libav.org
    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DBH] libavformat/mov.c
  • How do you enable "veryfast" libx264 preset from code using libavcodec ?

    3 novembre 2013, par dicroce

    I'm using libx264 via ffmpeg (in a C++ program), and I need to know how to activate the "veryfast" preset. A grep in the x264 source tree yields :

    include/x264.h:static const char * const x264_preset_names[] = "ultrafast", "superfast", "veryfast", "faster", "fast", "medium", "slow", "slower", "veryslow", "placebo", 0  ;

    Which inclines me to believe that x264 itself supports this preset as opposed to just being implemented in ffmpeg as a collection of other settings. So, the question is : How do I get ffmpeg to activate the x264 "veryfast" preset ?