Recherche avancée

Médias (1)

Mot : - Tags -/net art

Autres articles (85)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Amélioration de la version de base

    13 septembre 2013

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

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

Sur d’autres sites (11723)

  • 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.

  • 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.

  • 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 ?