
Recherche avancée
Médias (1)
-
The Great Big Beautiful Tomorrow
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
Autres articles (77)
-
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 (12307)
-
C# Desktop recorder h.264 cross-"computer"
14 décembre 2013, par rodiI was looking for a method with "least requirements" for a maximum compatibility.
I have seen that there are mainly 2 ways : through directx, through .NET ( only >Win7) but both requires Win7 Or DirectX 9 installed.
could
ffmpeg
be useful ? I have tried following this Wiki, but it prompts me :> ffmpeg -f dshow -i video="UScreenCapture":audio="Microphone" output.flv
[dshow @ 00000000003ea700] Could not find video device.
video=UScreenCapture: Input/output errorAny advice ?
-
ffmpeg invalid argument for vp9 encoding
17 juin 2015, par user3083672I’m following the recommended settings for vp9 encoding here : http://wiki.webmproject.org/ffmpeg/vp9-encoding-guide
Using this command :
ffmpeg -i test.mp4 -c:v libvpx-vp9 -pass 1 -b:v 1000K -threads 8 -speed 4 \
-tile-columns 6 -frame-parallel 1 -auto-alt-ref 1 -lag-in-frames 25 \
-an -f webm /dev/nullproduces the following error :
[NULL @ 0000000005a209c0] Unable to find a suitable output format for '\'
\: Invalid argumentAny ideas ?
-
encode YUV420 frame to VP9
21 novembre 2018, par User800222As title,
I’m pulling frames from a IP camera. I converted the input raw data to YUV420 format, and would like to encode YUV420 to VP9, and save frames as .webm format. Would I be able to do that ? Or should I input a BGR444 format for encoding ?
BTW, to set up the parameters for encoding vp9. Is the
av_dict_set()
the right function for setting parameters ?Ex : (http://wiki.webmproject.org/ffmpeg/vp9-encoding-guide)
av_dict_set(&opt, "crf" , "23", 0);
av_dict_set(&opt, "speed" , "4" , 0);
av_dict_set(&opt, "threads", "8" , 0);
av_dict_set(&opt, "pass" , "1" , 0);
av_dict_set(&opt, "b:v", "1400k", 0);Edit : The wiki uses 2 pass for setting parameters, would I be able to do in with 1 pass ?
Edit2 : Blow code seems to be working, wonder how can I bring the size of the videos (vp9) down ? Currently, I have similar size as using h264 encoder.
av_dict_set(&opt, "crf" , "45", 0);
av_dict_set(&opt, "speed" , "8" , 0);
av_dict_set(&opt, "quality", "realtime", 0);
av_dict_set(&opt, "threads", "8" , 0);
av_dict_set(&opt, "tile-columns", "3", 0);
av_dict_set(&opt, "frame-parallel", "1", 0);
av_dict_set(&opt, "row-mt", "1", 0);Update1 :
YUV420P can be encoded as VP9 !