
Recherche avancée
Autres articles (50)
-
Personnaliser les catégories
21 juin 2013, parFormulaire de création d’une catégorie
Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
On peut modifier ce formulaire dans la partie :
Administration > Configuration des masques de formulaire.
Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...) -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...)
Sur d’autres sites (11866)
-
ffmpeg : automatically insert volume filter when -vol is used.
17 mai 2012, par Clément Bœschffmpeg : automatically insert volume filter when -vol is used.
-
avconv : Fix volume adjustment for non-s16 sample formats
27 septembre 2011, par Alex Converseavconv : Fix volume adjustment for non-s16 sample formats
-
Reduce volume when the watermark playing using FFMPEG
2 novembre 2020, par Mouaad Abdelghafour AITALII'm using the
createWaterMark
method to create an audio watermark that play 3 times, theinjectWaterMark
inject the created watermark into the original audio file, everything works fine, but I would like to reduce the volume of the original audio file when the watermark start playing.

public static String createWaterMark(String inputPath, String outputPath, int duration) {
 return "-y -i " + inputPath + " -af apad -t " + duration / 3 + " " + outputPath;
 }

 public static String injectWaterMark(String inputPath, String waterMarkPath, String outputPath) {
 return "-y -i " + inputPath + " -filter_complex amovie=" + waterMarkPath + ":loop=0,asetpts=N/SR/TB[beep];[0][beep]amix=duration=shortest,volume=2 " + outputPath;
 }



Thank you