
Recherche avancée
Autres articles (47)
-
Formulaire personnalisable
21 juin 2013, parCette page présente les champs disponibles dans le formulaire de publication d’un média et il indique les différents champs qu’on peut ajouter. Formulaire de création d’un Media
Dans le cas d’un document de type média, les champs proposés par défaut sont : Texte Activer/Désactiver le forum ( on peut désactiver l’invite au commentaire pour chaque article ) Licence Ajout/suppression d’auteurs Tags
On peut modifier ce formulaire dans la partie :
Administration > Configuration des masques de formulaire. (...) -
Le plugin : Podcasts.
14 juillet 2010, parLe problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
Types de fichiers supportés dans les flux
Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...) -
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs
Sur d’autres sites (5671)
-
Removing both leading and trailing silence from m4a files using ffmpeg
11 juin 2021, par Tejas ShahI have an audio file which has both leading and trailing silence and with the following specifics :



Codec : MPEG AAC Audio (mp4a) Channels : Stereo Sample rate : 44100 Hz Bitrate : 253 kbps



I want to remove the silences AND keep the quality intact.



So far I've tried



ffmpeg -i 1.m4a -af silenceremove=1:0.5:0:1:0.5:0 2.m4a 




This is supposed to remove both the leading and trailing silences. 
But for some reason it doesn't remove the trailing silence. This seems to be a recurring problem. Found the following on another forum.



http://ffmpeg-users.933282.n4.nabble.com/How-to-delete-digital-silence-tp4667256p4667356.html



Also, ffmpeg reduces the bitrate to 128kbps. This I could fix by adding -ab 253k and making the command :



ffmpeg -i 1.m4a -af silenceremove=1:0.5:0:1:0.5:0 -ab 253k 3.m4a 




Now the problem is that the trailing silence isn't removed and when I want to process a batch of files I can't use the same bitrate (like 253kbps ) for every file. I'd like to know how VBR could be used for this case.



I know I can use sox and use the silence and reverse features to trim the silences.



http://digitalcardboard.com/blog/2009/08/25/the-sox-of-silence "Example 3 in this post"



But sox has the following problems :



- 

- It can't handle m4a files, I had to convert all files to mp3.
-
When using the silence filter in sox it caps the bitrate at 128kbps.



sox 1.mp3 2.mp3 silence 1 0.5 1% reverse silence 1 0.5 1% reverse







-
avcodec/bitstream : Remove outdated comment
29 août 2020, par Andreas Rheinhardtavcodec/bitstream : Remove outdated comment
The comment referred to the INIT_VLC_USE_STATIC flag which has been
removed in 2009 in 595324e143b57a52e2329eb47b84395c70f93087 ; the
function it referred to was removed even earlier in commit
83422c1940d963d395a64bee0cbb9c637192ce8c in 2008.Reviewed-by : Paul B Mahol <onemda@gmail.com>
Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com> -
avcodec/mpeg4audio : add newer channel_coding mappings
10 juin 2020, par Jan Ekström