
Recherche avancée
Médias (1)
-
The pirate bay depuis la Belgique
1er avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (69)
-
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 ;
-
Personnaliser les catégories
21 juin 2013, parFormulaire 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 (...) -
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 ) (...)
Sur d’autres sites (8471)
-
FFMpeg - adding a video codec
24 juillet 2012, par user648880I've read the tutorials found on this site
Adding new CODEC to ffmpegbut I can't seem to apply them to my situation. I have a Mpeg-4 based proprietary codec used in a CCTV system. I'd like to decode it back into the base Mpeg-4 or other format. The codec is dll based - where the dll is found in my c :/Windows folder. I followed the steps in the Cook tutorial (http://wiki.multimedia.cx/index.php?title=FFmpeg_codec_howto)- but am lost on developing my own .c file similar to the libavcodec/cook.c - can I not point to the dll file for this ?
-
How to speed up black video creation with FFMPEG ?
2 décembre 2017, par Rick SullivanI have been generating static black videos as backgrounds using FFMPEG’s color source. This works fine for smaller and shorter videos, but I need to be able to generate long 1080p black videos quickly.
For example, I can generate a two hour long 1080p@30fps video using :
ffmpeg -f lavfi -i color=black:s=1920x1080:r=30 -t 7200 test.mp4
But this will take over 45 minutes to run.
There are options that speed up runtime, like using the
ultrafast
preset :ffmpeg -f lavfi -i color=black:s=1920x1080:r=30 -preset ultrafast -t 7200 test.mp4
Which will take around 20 minutes to run. Better, but not good enough for doing this en masse.
Are there any other options to drastically speed up runtime ?
Intuitively, I am generating a static video where only video duration varies, so it seems like there should be an approach that is restricted only by disk write speed. All of these options are very CPU intensive and seem to be doing more processing than is necessary for my use case.
-
libav - Codec not found
13 août 2015, par MarkBI am following this Audio Encode example from the ffmpeg docu : https://www.ffmpeg.org/doxygen/0.6/api-example_8c-source.html
But instead of a
.mp2
file i want to decode a.wav
file
So I changed this lines in my program :codec = avcodec_find_encoder(AV_CODEC_ID_WAVPACK)
if(!codec){
fprintf(stderr,"codec not found\n");
exit(1)
}But I always enter the
if
-> it seems I cannot open the codec.I have installed
wavpack
andlibva
with--enable-libwavpack
.