
Recherche avancée
Autres articles (67)
-
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
Contribute to translation
13 avril 2011You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
MediaSPIP is currently available in French and English (...)
Sur d’autres sites (6841)
-
Finding audio peaks in video files
23 octobre 2013, par Adam LangsnerI have a bunch of video files that I want to process. I want to write a program that can find the audio peaks in each file and return the times where those peaks occurred.
I've looked for a lot of different APIs in different languages but couldn't get any of them to work. I am partial to php and java, so if anyone knows any good audio processing libraries in those languages that would be great ! But really I don't care too much about the language. I will need to run this program on a cron.
Also, is it possible to use system calls to ffmpeg from within a script to accomplish this ? Thanks in advance.
-
Using FFmpeg to zoom in then zoom out in a video
5 juillet 2020, par davidI would like to use FFmpeg on a video to zoom in and stay zoomed for 3 seconds then zoom out to full screen and stay like that for 3 seconds and repeat this cycle through the whole video
Thanks in advance.


-
Remove specific part from multiple videos using ffmpeg
28 avril 2022, par che10I am new to ffmpeg and I am trying to cut the first 20 seconds of each video in a folder. So the output videos will be without the first 20 seconds. I know how to do it for 1 video but how to do it in a batch for multiple videos ? I am using windows 10. Thanks in advance !


what I am using for 1 video file is :
ffmpeg -i "filename.mkv" -ss 00:00:20 output.mkv