
Recherche avancée
Autres articles (65)
-
La file d’attente de SPIPmotion
28 novembre 2010, parUne file d’attente stockée dans la base de donnée
Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...) -
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 (12888)
-
ffmpeg extract video unable to play
30 juin 2021, par Khánh Phạm ĐìnhI use
ffmpeg
to stream video and show up the camera's frame to window in the same time according to current code :

file
record_video_and_showup.sh


ffmpeg -f v4l2 -framerate 30 -i $1 -c:v libx264 -preset superfast -crf 18 -pix_fmt yuv420p -c:a libmp3lame -ac 2 -ar 44100 -b:a 128k -f tee -map 0:v "$2|[f=nut]pipe:" | ffplay -an pipe:



to record video and show up :


./record_video_and_showup.sh /dev/video0 test.mp4



finally, we get file
test.mp4
but can't play it on app such as vlc. When we open it on google chrome, it can run but the start and end time were incorrect.

Can anyone help me ?


-
FFmpeg command overlay watermark speed
3 septembre 2021, par user892134I currently use the following command to add a watermark to 2GB video. This takes around an hour. I'm wondering if i can speed this up in anyway.


ffmpeg -y -i input.mp4 -i watermark.png -filter_complex \"overlay=10:10\" -c:a copy -c:v libx264 -crf 22 -preset ultrafast output.mp4



I'm using preset
ultrafast
, is there another command which can add a watermark quicker than what i'm using ? If not, how can i change command to show watermark every nth frames that won't show flicker e.g. every 5 frames ?

-
How to create videos from images using ffmpeg android ? [on hold]
30 mai 2016, par GajuHello every one I want to do these three things :
- Create videos form no of images and play as a slide show ?
- Merge Audio and Video in video file.
- Merge two video ?
For this I am using ffmpeg command using android ffmpeg library. I uesd many command also create video from images but its duration for images not well i some times finish video in 1 second or sometimes it will show only one images and also sometimes it play slides at a very fast speed. So what i do for this ? and I also tried with Javacv, but not getting any exact solution.