
Recherche avancée
Médias (33)
-
Stereo master soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
#7 Ambience
16 octobre 2011, par
Mis à jour : Juin 2015
Langue : English
Type : Audio
-
#6 Teaser Music
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#5 End Title
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#3 The Safest Place
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#4 Emo Creates
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
Autres articles (60)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
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 (...) -
Amélioration de la version de base
13 septembre 2013Jolie sélection multiple
Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)
Sur d’autres sites (6043)
-
Revision 855e23ce8c : Merge "Small mode_info_context cleanup in filter_block_plane"
25 juin 2013, par Scott LaVarnwayMerge "Small mode_info_context cleanup in filter_block_plane"
-
Revision 0e7b7e47c2 : Merge "Small cleanup inside setup_loopfilter function." into experimental
6 avril 2013, par John KoleszarChanged Paths : Modify /vp9/common/vp9_onyxc_int.h Modify /vp9/decoder/vp9_decodframe.c Merge "Small cleanup inside setup_loopfilter function." into experimental
-
Convert .flac to .mp3 with ffmpeg, avoid small silence ?
19 septembre 2017, par RocketNutsI’m converting a bunch of .flac audio samples to .mp3 with ffmpeg. Some of these samples are supposed to loop, i.e. the end of the sample fits seamlessly to the beginning (no tick).
Now no matter how high the mp3 quality setting I use, I keep getting about 0.05 sec of silence at the beginning of the resulting .mp3 which is not there in the original flac.
Here’s a zoomed in Audacity view of the beginning and ending of both audio samples :
Original flac :
Notice how the beginning and ending are both ’flat’, so they fit smoothly.
Converted to mp3 :
Notice how there is now suddenly a 0.05 sec silence, and the end doesn’t end exactly flat (on the baseline). Hence they don’t fit, and the tick and silence are clearly audible when playing in a loop.
I’m using this for the conversion :
ffmpeg -i foo.flac -acodec libmp3lame -ab 320k bar.mp3
or this : (with the
-q:a
VBR setting)ffmpeg -i foo.flac -acodec libmp3lame -q:a 0 bar.mp3
Either
-q:a 0
or-ab 320k
is supposed to give the highest possible quality, but I can’t get rid of that strange silence in the beginning and small cutoff at the end, which causes a tick when playing in a loop.