
Recherche avancée
Médias (91)
-
Head down (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Echoplex (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Discipline (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Letting you (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
1 000 000 (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
999 999 (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
Autres articles (94)
-
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 (...) -
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...) -
Configurer la prise en compte des langues
15 novembre 2010, parAccéder à la configuration et ajouter des langues prises en compte
Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)
Sur d’autres sites (12548)
-
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.
-
Unable to get the audio from webcam and play it at the same time [FFMPEG]
5 avril 2019, par Apoorv MishraI’m trying to grab the audio and video from the webcam and play it in slow motion and proper sync between audio and video at the same time. But when I try the following command :
ffmpeg -f v4l2 -rtbufsize 1000000k -i /dev/video0 -f alsa -i default \
-profile:v high -pix_fmt yuvj420p -level:v 4.1 -preset ultrafast \
-tune zerolatency -vcodec libx264 -r 10 -b:v 512k -s 640x360 \
-acodec aac -strict -2 -ac 1 -b:a 64k -b:v 300k -g 30 -ar 44100 \
-map 0 -f tee "output.mkv|[f=nut]pipe:" | ffplay \
pipe: -vf "setpts=2.0*N/FRAME_RATE/TB"I was unable to hear the audio. In the command, I’d only slowed down video but I will slow down the audio as well once I’ll be able to get the audio along with the video.
Above command will play the video for you but not the audio.
Please help me out with this. Any help is appreciated.