
Recherche avancée
Médias (1)
-
Sintel MP4 Surround 5.1 Full
13 mai 2011, par
Mis à jour : Février 2012
Langue : English
Type : Video
Autres articles (54)
-
Configurer la prise en compte des langues
15 novembre 2010, parAccéder à la configuration et ajouter des langues prises en compte
Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...) -
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 (...) -
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 (9169)
-
Create a slide show from images in a folder [on hold]
26 juillet 2017, par randommmanSo i have a folder with images like so :
1.png
2.png
3.png
.. etcI am trying to generate a slideshow video from the videos, i have the following code :
string ffmpegPath = "ffmpeg.exe";
string ffmpegParams = "-y - r " + mimtime + " -i " + Images + "- c:v libx264 -r 15 - pix_fmt yuv420p -vf fps = 90 " + Video;
Process ffmpeg = new Process();
ffmpeg.StartInfo.FileName = "cmd.exe";
ffmpeg.StartInfo.Arguments = "/k " + ffmpegPath + " " + ffmpegParams;
ffmpeg.Start();But this is giving me permision denied, because I think I need to add the individual images. How can I get the individuall images to generate a video ?
-
Revision cdc954fdc8 : skip the un-necessary motion search in the first pass This patch allows the VP9
16 juin 2014, par Pengchong JinChanged Paths :
Modify /vp9/encoder/vp9_firstpass.c
skip the un-necessary motion search in the first passThis patch allows the VP9 encoder to skip the un-necessary
motion search in the first pass. It computes the motion error
of 0,0 motion using the last source frame as the reference,
and skips the further motion search if this error is small.Borg test shows overall the patch gives PSNR gain (derf -0.001%,
yt 0.341%, hd 0.282%). Individual clips may have PSNR gain or
loss. The best PSNR performance is 7.347% and the worst is -0.662%.
The first pass encoding speedup for slideshow clips is over 30%.Change-Id : I4cac4dbd911f277ee858e161f3ca652c771344fe
-
How do I use Ff-mpeg, Grabbing .PNG from RTMP stream ?
22 février 2016, par Lewis DayI have recently installed
Ff-mpeg
onto my vps and have looked online for possible solutions to my problem I was having, I’m wondering how I can grabindividual frames
from artmp stream
and display them as animage
. I know this has previously been asked before here ; but my question is how can I use this code ?For example the answer on that question was marked as this ;
ffmpeg -an -flv_metadata 1 -analyzeduration 1 ...
How would I use this on a .php file ? I mean this doesnt even ask for the rtmp ip ?