
Recherche avancée
Autres articles (38)
-
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 (...) -
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...) -
Support de tous types de médias
10 avril 2011Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)
Sur d’autres sites (3768)
-
lavc/movtextenc : add option to scale fontsize with height
5 avril 2020, par John Stebbins -
ffmpeg - adding Dynamic logo & random position watermark to video ?
9 août 2021, par JackSI am making a tutorial for sending through mail to my uses, and to avoid piracy distribution I thought to put watermarks (
logo.png
) at random places at interval on the videos.

I tried using the command from ffmpeg - Dynamic letters and random position watermark to video ? :


ffmpeg -i input.mp4 \
-vf \
"drawtext=fontfile=font.ttf:fontsize=80:fontcolor=yellow@0.5:text='studentname': \
 x=if(eq(mod(t\,30)\,0)\,rand(0\,(W-tw))\,x): \
 y=if(eq(mod(t\,30)\,0)\,rand(0\,(H-th))\,y)" \
-c:v libx264 -crf 23 -c:a copy output.mp4



But it gave me error :


[NULL @ 0x55c812525600] Unable to find a suitable output format for '\'
\: Invalid argument



-
Combien audio input with infinite loop sound on FFMpeg for rPi
6 mars 2021, par FoxFrSomeone can say me how its the best way to combine (mixing) the sound input from a Jack with an infinite loop sound on FFMpeg ? i seen many thing about this but still crashed my test


Goal ? use the infinite loop for a bed, with a voice from mic (with jack) over the bed
the ultimate will be have a parameter for the volume of input jack & bed


So clear ?


ffmpeg \
-i /dev/video0 \
-i /dev/video2 \
-stream_loop -1 -re -i "/home/pi/videopi/bed.mp3" \
-filter_complex "[0][1]overlay=enable='lt(mod(t,60),30)'[v];[v]drawtext=textfile=/home/pi/videopi/gps.txt:reload=1:x=30:y=100:fontfile=OpenSans.ttf:font$
-map "[v]" \
-map 2:a \
-c:v libx264 -b:v 4000k -maxrate 4000k -bufsize 8000k -g 50 -c:a aac \
-f flv rtmp://a.rtmp.youtube.com/live2/XXXXXXXXXX



Many many thkx