
Recherche avancée
Autres articles (81)
-
Mise à jour de la version 0.1 vers 0.2
24 juin 2013, parExplications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...) -
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 ) (...)
Sur d’autres sites (15034)
-
Museum of Multimedia Software, Part 2
16 août 2010, par Multimedia Mike — Software MuseumThis installment includes a bunch of old, discontinued Adobe software as well as some Flash-related mutlimedia software.
Screen Time for Flash Screen Saver Factory
"Create High Impact Screen Savers Using Macromedia Flash."
Requirements include Windows 3.1, 95 or NT 3.5.1. A 486 computer is required to play the resulting screensavers which are Flash projectors using Macromedia Flash 3.0.
Monster Interactive Instant GUI 2
Create eye-popping GUIs more easily for use in Flash. Usability experts would argue that this is not a good thing.
Adobe Dimensions 3.0
"The Easy Yet Powerful 3D Rendering Tool." This software was end-of-life’d in late 2004-early 2005 (depending on region).
Adobe ImageStyler
"Instantly add style to your Web site." Wikipedia claims that this product was sold from 1998 to 2000 when it was superseded by Adobe LiveMotion (see below).
Google is able to excavate a link to the Latin American site for Adobe ImageStyler, a page that doesn’t seem to be replicated in any other language.
Adobe LiveMotion
"Professional Web graphics and animation." This is version 1, where the last version was #2, released in 2002.
Adobe Streamline 4.0
"The most powerful way to convert images into line art." This was discontinued in mid-2005.
Adobe SuperATM
"The magic that maintains the look of your documents." This is the oldest item in my collection. A close examination of the back of the box reveals an old Adobe logo. The latest copyright date on the box is 1992.
-
How to split one overlay script to multiple part scripts ?
4 mai 2024, par mikezangI can slide 30 images from left to center and countdown 10 seconds, then keep slide to left..., but run this script more than hours...


script.txt


[0:v]scale=864:504:force_original_aspect_ratio=decrease,pad=864:504:-1:-1,setsar=1[s0];
[1:v]scale=864:504:force_original_aspect_ratio=decrease,pad=864:504:-1:-1,setsar=1[s1];
...
[29:v]scale=864:504:force_original_aspect_ratio=decrease,pad=864:504:-1:-1,setsar=1[s29];

[s0]split=2[bg][v];
[bg]drawbox=c=white:t=fill[bg];
[bg][v]overlay=x='if(between(t,0,10),max(W-w*(t-0),0),max(0-w*(t-10),0-W))',
drawtext=fontfile='/WINDOWS/Fonts/Arial.ttf':text='%{eif\:10-t\:d}':
box=1:boxborderw=10|14:fontsize=24:x=w-tw-10:y=14:boxcolor=orange@0.4:fontcolor=red:enable='between(t,0,10)'[v0];

[v0][s1]overlay=x='if(between(t,10,20),max(W-w*(t-10),0),max(0-w*(t-20),0-W))',
drawtext=fontfile='/WINDOWS/Fonts/Arial.ttf':text='%{eif\:20-t\:d}':
box=1:boxborderw=10|14:fontsize=24:x=w-tw-10:y=14:boxcolor=orange@0.4:fontcolor=red:enable='between(t,10,20)'[v1];
...



script.bat


ffmpeg -hide_banner ^
 -loop 1 -i "images\01.png" ^
 -loop 1 -i "images\02.png" ^
...
 -loop 1 -i "images\30.png" ^
 -filter_complex_script script.txt ^
 -t 300 -y videos/mergeYearsTest.mp4



I think that I can split script to create 30 parts video then merge them to shorten time :


scipt-01.txt


[0:v]scale=864:504:force_original_aspect_ratio=decrease,pad=864:504:-1:-1,setsar=1[s0];
[s0]split=2[bg][v];
[bg]drawbox=c=white:t=fill[bg];
[bg][v]overlay=x='if(between(t,0,10),max(W-w*(t-0),0),max(0-w*(t-10),0-W))',
drawtext=fontfile='/WINDOWS/Fonts/Arial.ttf':text='%{eif\:10-t\:d}':
box=1:boxborderw=10|10:fontsize=24:x=w-tw-10:y=10:boxcolor=orange@0.4:fontcolor=red:enable='between(t,0,10)';



script-01.bat


ffmpeg -hide_banner -loop 1 -i "images\01.png" ^ 
 -filter_complex_script script-01.txt -t 10 -y v01.mp4



v01.mp4 is no any problems.


script-02.txt


[0:v]scale=864:504:force_original_aspect_ratio=decrease,pad=864:504:-1:-1,setsar=1[s0];
[1:v]scale=864:504:force_original_aspect_ratio=decrease,pad=864:504:-1:-1,setsar=1[s1];

[s0][s1]overlay=x='if(between(t,10,20),max(W-w*(t-10),0),max(0-w*(t-20),0-W))',
drawtext=fontfile='/WINDOWS/Fonts/Arial.ttf':text='%{eif\:20-t\:d}':
box=1:boxborderw=10|10:fontsize=24:x=w-tw-10:y=10:boxcolor=orange@0.4:fontcolor=red:enable='between(t,10,20)';



script-02.bat


ffmpeg -hide_banner -i "v01.mp4" -loop 1 -i "images\02.png" ^
 -filter_complex_script script-02.txt -t 10 -y v02.mp4



but this v02.mp4 is the same as v01.mp4 without slide next image, I also tried
-loop 1 "v01.mp4"
, that will be error, what can I do to create v02.mp4 as the same affect with full script ?

====================================================


I got what I wonder, script-02 should be as below :


script-02.txt
[0:v]scale=864:504:force_original_aspect_ratio=decrease,pad=864:504 :-1 :-1,setsar=1[s0] ;
[1:v]scale=864:504:force_original_aspect_ratio=decrease,pad=864:504 :-1 :-1,setsar=1[s1] ;


[s0][s1]overlay=x='if(between(t,0,10),max(W-w*t,0),max(0-w*(t-10),0-W))',
drawtext=fontfile='/WINDOWS/Fonts/Arial.ttf':text='%{eif\:10-t\:d}':
box=1:boxborderw=10|10:fontsize=24:x=w-tw-10:y=10:boxcolor=orange@0.4:fontcolor=red:enable='between(t,0,10)';



script-02.bat


ffmpeg -hide_banner 
 -loop 1 -i "images\01.png" 
 -loop 1 -i "images\02.png" 
 -filter_complex_script script-02.txt -t 10 -y v02.mp4





-
How to add a scrolling text of the audio file song name on a sepecific part of a video and stream it to youtube using ffmpeg
5 novembre 2022, par Youssef LasheenI know this is s very long and specific question but it can be broken down to these points :


- 

- How to add a text of song name on video
- How to scroll in a specific area not from the beginning of the video to the end
- How to stream a looping video and loop through multiple audio files to youtube/twitch.








I kinda got the third point but i think its not an elegant solution


ffmpeg -re -stream_loop -1 -i back.gif -safe 0 -i mylist.txt -c copy -map 0:v:0 -map 1:a:0 -c:v libx264 -preset veryfast -b:v 3000k -maxrate 3000k \ -bufsize 6000k -pix_fmt yuv420p -g 50 -c:a aac -b:a 160k -ac 2 \ -ar 44100 -f flv rtmp://live.twitch.tv/app/$key


I also found this script that adds a scrolling image (input.jpg) to specific aree of a video but i coudlnt integrate it with the script above


ffmpeg -y -ignore_loop 0 -r 25 -i back.gif -loop 1 -r 25 -i input.jpg -filter_complex "[0:v]crop=270:257:360:55[c0];[c0][1:v]overlay=y='257-t*257*0.04':eof_action=endall[fg];[0:v][fg]overlay=x=360:y=55:eof_action=endall" -t 50 output.mp4