Recherche avancée

Médias (0)

Mot : - Tags -/alertes

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

Autres articles (112)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (5299)

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