
Recherche avancée
Autres articles (58)
-
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 (...) -
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...) -
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 (5404)
-
Trying loop an mp3 and output the mp3 with ffmpeg
12 février 2023, par Chewie The ChorkieI have a 7 second mp3. I want to loop it 3 times and give me back the output. It only plays once in the output, though.


I've tried setting the duration to 21 seconds instead (the atrim parameter), but in that case the output will only play once, and the remaining 14 seconds is silent.


ffmpeg -i explosion.mp3 -filter_complex "[0:a]aresample=async=1:min_hard_comp=0.100000:first_pts=0,apad,atrim=end=7,aloop=loop=3:size=0[outa]" -map "[outa]" -c:a libmp3lame -q:a 2 output.mp3



-
How to Merge prores videos [duplicate]
14 mars 2021, par FangHeI have two prores mov files.
I tried to merge two videos without re-encoding using ffmpeg concat.


ffmpeg -i "concat:video1.mov|video2.mov" -c copy output.mov


output.mov is like video1.mov. didn't merge two videos.


Please give me solution.
Thank you


-
What's the proper way to check differences between two different video file ? [on hold]
13 juillet 2016, par HakanI wanna make a program that can check differences between two video file and the program should give me that difference rate ?
What’s the best way for do that ? I found FFmpeg hash mutexer and it can work on GPU but I’ve a more than 1500 video file for checking. Also, i guess Nvidia gives something about that.
I know, i can do that with frame-by-frame hash checking but I need more faster solution.
Thanks.