
Recherche avancée
Autres articles (112)
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains 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, parPré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 2013Puis-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 BoulderI 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 :
<%= video_tag photo.attachment_url(:medium) %>
I tried adding
Mime::Type.register "video/mp4", :mp4
toconfig/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 sayssomething 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> -
How do you enable "veryfast" libx264 preset from code using libavcodec ?
3 novembre 2013, par dicroceI'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 ?