Recherche avancée

Médias (0)

Mot : - Tags -/upload

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (21)

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La 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 (...)

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

  • Ajouter notes et légendes aux images

    7 février 2011, par

    Pour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
    Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
    Modification lors de l’ajout d’un média
    Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)

Sur d’autres sites (6008)

  • How to play wav/mp3 file in Android using FFMPEG

    8 juillet 2012, par user924702

    Can 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 Freewind

    I 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/s

    ffmpeg -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/s

    Not sure where is wrong.

  • Play video in Android using FFMPEG

    24 juin 2013, par Jagdeep Singh

    I 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 using FFMPEG. Is there any example or any code which can help me on this ?

    Thanks in advance.