
Recherche avancée
Autres articles (57)
-
XMP PHP
13 mai 2011, parDixit Wikipedia, XMP signifie :
Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...) -
Use, discuss, criticize
13 avril 2011, parTalk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
A discussion list is available for all exchanges between users. -
Installation en mode ferme
4 février 2011, parLe mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
C’est la méthode que nous utilisons sur cette même plateforme.
L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...)
Sur d’autres sites (5786)
-
c# - WAV file trimming and adding silence
16 mai 2018, par Piotr CI have two recordings of same event, different lengths, started at different times. I want to synchronize them, time offset is known. I want to achieve the following :
- Align second one in time by the time offset.
- Trim second one to match the length of the first one
- When there is nothing to trim, add silence to match the length of the first one.
I found the way to trim the audio, but I couldn’t find solution for adding silence. Is there any way to do this with NAudio, ffmpeg or Aurio ?
-
FFMPEG windows 10, how to find multimedia file duration command
7 mars 2018, par labanaD:/Projects/wamp/bin/ffmpeg.exe -y -i D:/Projects/ffmpeg/test.mp4 -f -t
This is my command to find mp4 file time duration but giving error in coomand line is "At least one output file must be specified"
-
How to shorten silence in audio file using ffmpeg ?
22 mars 2021, par NatashaCI'm trying to shorten excess silence in audio recordings using ffmpeg (shorten them, not cutting silence out entirely). The current code I use :



ffmpeg -hide_banner -i file_name.m4a -af silenceremove=0:0:0:-1:0.7:-30dB file_name_short.m4a




is not working. It detects silence longer than 0.7 seconds and remove them completely, which is not what I want. Anyone knows how to truncate silence, say, to shorten silence longer than 1 second down to 0.5 second ?