
Recherche avancée
Autres articles (98)
-
Activation de l’inscription des visiteurs
12 avril 2011, parIl est également possible d’activer l’inscription des visiteurs ce qui permettra à tout un chacun d’ouvrir soit même un compte sur le canal en question dans le cadre de projets ouverts par exemple.
Pour ce faire, il suffit d’aller dans l’espace de configuration du site en choisissant le sous menus "Gestion des utilisateurs". Le premier formulaire visible correspond à cette fonctionnalité.
Par défaut, MediaSPIP a créé lors de son initialisation un élément de menu dans le menu du haut de la page menant (...) -
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page. -
Support audio et vidéo HTML5
10 avril 2011MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)
Sur d’autres sites (8799)
-
How to add an additional (on top of the main) random audio track to a video using ffpmeg
13 octobre 2022, par Axl AlertI need to add random audio tracks (1.mp3, 2.mp3, 3.mp3, 4.mp3) to video files (video1.mp4 -video10.mp4 ) using ffmpeg.




My code that doesn't work.


- 

-
I don’t understand how to add random to a variable in cmd so that it is used as a name


-
What filters need to be set in ffmpeg so that nothing breaks








set /a %%R=1+5*%random%/32768

FOR /F "tokens=*" %%G IN ('dir /b *.mp4') DO (

ffmpeg -i "%%G" -i "%%R".mp3 -map 0 -map 1 -c copy %%~nG.mp4

)



-
-
FFMpeg - Adding Timecode track messes with video output
19 octobre 2022, par MuindorI'm using FFMpeg to setup some automation.


I want to pull in a PNG, repeat it for 5 seconds, then add on an mov file to the end. I have that working great. The problem comes when I add a timecode to the output. The output video remains the correct length, but the PNG only repeats for 24 frames instead of 120, then the mov gets added, then black frames fill the rest.


This is the command I'm using. Without the timecode flag it works perfectly.


./ffmpeg -loop 1 -t 5 -r 24 -i 'image.png' -i 'end.mov' -filter_complex "[0]setdar=16/9[a];[1]setdar=16/9[b];[a][b]concat=n=2:v=1" -vsync 2 -r 24 -vcodec prores -timecode 00:59:53:00 output.mov



Just a note, I don't want any any audio track.


Thanks in advance !


-
How can I cut segments of audio/video while keeping the other track intact in ffmpeg ?
8 novembre 2022, par limejellodragonI am a newer user to ffmpeg, but I have a slightly complicated use case for it. I need to be able to cut multiple sections out of a video and/or multiple sections out of the audio, with the actual length of the video and audio files remaining intact (e.g. the audio would cut out but the video continues, or the video continues but the audio cuts out). I have been slowly learning about complex filtergraphs, but a little help would be VERY much appreciated.


this is currently my super basic "test script" to see if I can get it to work (in it's actual use case, the timestamps will be variables in a python program)


ffmpeg -i bdt.mkv -filter_complex 
 [0:v]trim=start=10.0:end=15.0,setpts=PTS-STARTPTS[0v];
 [0:a]atrim=start=10.0:end=15.0,asetpts=PTS-STARTPTS[0a];
 [0:v]trim=start=65.0:end=70.0,setpts=PTS-STARTPTS[1v];
 [0:a]atrim=start=65.0:end=70.0,asetpts=PTS-STARTPTS[1a];[0v][0a][1v]
 [1a]concat=n=2:v=1:a=1[outv][outa] -map [outv] -map [outa] out.mp4