
Recherche avancée
Autres articles (88)
-
Les tâches Cron régulières de la ferme
1er décembre 2010, parLa gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
Le super Cron (gestion_mutu_super_cron)
Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...) -
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP automatically converts uploaded files to internet-compatible formats.
Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
All uploaded files are stored online in their original format, so you can (...) -
MediaSPIP Player : problèmes potentiels
22 février 2011, parLe lecteur ne fonctionne pas sur Internet Explorer
Sur Internet Explorer (8 et 7 au moins), le plugin utilise le lecteur Flash flowplayer pour lire vidéos et son. Si le lecteur ne semble pas fonctionner, cela peut venir de la configuration du mod_deflate d’Apache.
Si dans la configuration de ce module Apache vous avez une ligne qui ressemble à la suivante, essayez de la supprimer ou de la commenter pour voir si le lecteur fonctionne correctement : /** * GeSHi (C) 2004 - 2007 Nigel McNie, (...)
Sur d’autres sites (10878)
-
How to play wav/mp3 file in Android using FFMPEG
8 juillet 2012, par user924702Can any one help me to understand how to "play wav/mp3 file in Android using FFMPEG" ?
I have already tried below link without success.
Decoding audio via Android using FFMpeg
Please suggest code/tutorials/documents that can be of help to me ?
-
JavaFx MediaPlayer can't play my mp3 and m4a files
10 août 2018, par FreewindI record some .wav files from microphone, and convert it to mp3 and m4a files. These files can be played with my desktop player correctly.
Then in my JavaFX program, I play them as :
String fileUri = file.toURI().toString();
Media media = new Media(fileUri);
MediaPlayer mediaPlayer = new MediaPlayer(media);
mediaPlayer.play();But there is no sound, and no errors.
I use
ffmpeg
to view them :ffmpeg -i demo.m4a
Input #0, aac, from 'demo.m4a':
Duration: 00:00:54.00, bitrate: 132 kb/s
Stream #0:0: Audio: aac (LC), 44100 Hz, stereo, fltp, 132 kb/sffmpeg -i hello.mp3
Input #0, mp3, from 'hello.mp3':
Metadata:
encoder : Lavf57.83.100
Duration: 00:00:01.12, start: 0.069063, bitrate: 49 kb/s
Stream #0:0: Audio: mp3, 16000 Hz, stereo, s16p, 48 kb/sNot sure where is wrong.
-
Play video in Android using FFMPEG
24 juin 2013, par Jagdeep SinghI had build
FFmpeg
library in Android(NDK) using this. But this example is too basic. It just checks if the video is present or not. What I want to do is just to play the video usingFFMPEG
. Is there any example or any code which can help me on this ?Thanks in advance.