
Recherche avancée
Médias (1)
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
Autres articles (62)
-
Participer à sa traduction
10 avril 2011Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
Actuellement MediaSPIP n’est disponible qu’en français et (...) -
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
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 (13392)
-
Adjusting video length to fit audio length in FFmpeg
8 avril 2015, par SpreadysThis has been driving me mad !
I have video.avi, a raw uncompressed video with a duration of 6mins
I have audio.wav, a raw uncompressed audio with a duration of 9minsI need to mux these together, but map the timing information from the audio.
Using Vsync 2 I would hope that video frames get duplicated in order to do this.My current (failed) attempt is
ffmpeg -i video.avi -i audio.wav
c:v rawvideo -c:a copy
vsync 2 -map 0:0,1:0 -map 1:0,1:0
newvideo.aviMy understanding is that the -map first designates what file:stream, and this is followed by the file:stream to be used for timing information.
I have attempted all my usual research methods in an attempt to avoid asking but it is still resulting in the avi container holding two streams with the video length unchanged.
If anyone can shed some light on my errors, I would be very grateful....or if you need further info - please ask !Thanks
DavidAny guidance on what other information may promote some suggestions to where i’m going wrong also appreciated.
Thanks -
How to filter motion vectors ?
2 août 2019, par vdletgMy video is very noisy temporally. The video was taken under low light conditions at a high frame rate.
Currently I’ve tried
ffplay -flags2 +export_mvs -i test.mp4 -vf edgedetect=low=0.05:high=0.17,hqdn3d=4.0:3.0:6.0:4.5,codecview=mv=pf+bf+bb,"lutyuv=y='if(lt(val,19),0,val)'
The motion vectors are tracking noise as in the near dark areas the vectors varying greatly in magnitude and angle.
How do I decimate or filter the display motion vectors based on magnitude and/or location ?
-
FFmpeg - ANR on large files when mixing video and audio
8 août 2019, par spaceman12This command
ffmpeg -i video.webm -i audio.m4a -c copy output.mkv
will always produce an ANR error in android at the end of the conversion for any large files, say greater than 700mb.
The ANR error is produced only at the finishing end of the conversion process after the output has been successfully generated, not in the middle or at the beginning etc.
So I suspect it has got to do with some I/O stuff at the end.
Can someone please shed some light into this, and help eliminate this ANR problem ?