
Recherche avancée
Médias (1)
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
Autres articles (84)
-
Menus personnalisés
14 novembre 2010, parMediaSPIP utilise le plugin Menus pour gérer plusieurs menus configurables pour la navigation.
Cela permet de laisser aux administrateurs de canaux la possibilité de configurer finement ces menus.
Menus créés à l’initialisation du site
Par défaut trois menus sont créés automatiquement à l’initialisation du site : Le menu principal ; Identifiant : barrenav ; Ce menu s’insère en général en haut de la page après le bloc d’entête, son identifiant le rend compatible avec les squelettes basés sur Zpip ; (...) -
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. -
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 (...)
Sur d’autres sites (11317)
-
Merge pull request #2321 from thanpolas/add-gitignore-for-files
31 mai 2013, par blueimpMerge pull request #2321 from thanpolas/add-gitignore-for-files
Added gitignore in server/php to ignore uploaded files
-
Convert audio files for CMU Sphinx 4 input
31 décembre 2012, par Nate GlennI have a big batch of files I'd like to run recognition on using CMU Sphinx 4. Sphinx requires the following format :
- 16 khz
- 16 bit
- mono
- little-endian
My files are something like 44100 khz, 32 bit stereo mp3 files. I tried using Tritonus, and then its updated version JavaZoom, to convert using code from bakuzen. However,
AudioSystem.getAudioInputStream(File)
throws anUnsupportedAudioFileException
, and I haven't been able to figure out why, so I have moved on.Now I am trying ffmpeg. The command
ffmpeg -i input.mp3 -ac 1 -ab 16 -ar 16000 output.wav
seems like it should do the trick (except for little endian), but when I check the output with Audacity, it still labels it as "32-bit float". The command I found on this site also uses-acodec pcm_s16le
, which from its name seems to be outputting 16 bit little endian ; however, Audacity still tells me the output is32 bit float
.Can anyone tell me how to convert audio files into the format required by CMU Sphinx 4 ?
-
Convert audio files for CMU Sphinx 4 input
5 août 2021, par Nate GlennI have a big batch of files I'd like to run recognition on using CMU Sphinx 4. Sphinx requires the following format :



- 

- 16 khz
- 16 bit
- mono
- little-endian











My files are something like 44100 khz, 32 bit stereo mp3 files. I tried using Tritonus, and then its updated version JavaZoom, to convert using code from bakuzen. However,
AudioSystem.getAudioInputStream(File)
throws anUnsupportedAudioFileException
, and I haven't been able to figure out why, so I have moved on.


Now I am trying ffmpeg. The command
ffmpeg -i input.mp3 -ac 1 -ab 16 -ar 16000 output.wav
seems like it should do the trick (except for little endian), but when I check the output with Audacity, it still labels it as "32-bit float". The command I found on this site also uses-acodec pcm_s16le
, which from its name seems to be outputting 16 bit little endian ; however, Audacity still tells me the output is32 bit float
.


Can anyone tell me how to convert audio files into the format required by CMU Sphinx 4 ?