Recherche avancée

Médias (91)

Autres articles (78)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Installation en mode ferme

    4 février 2011, par

    Le mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
    C’est la méthode que nous utilisons sur cette même plateforme.
    L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
    Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...)

Sur d’autres sites (10128)

  • Android : How to record the mobile screen without using USB cable ?

    21 juin 2012, par Rajesh

    I want to build an application which would record my screen activities and would store them in a video file.

    1) I need to take the screenshots of my screen movements at periodic intervals and store them on the SD card.

    2) How can I create the video from the images which are already available on my SD card. I have tried with the FFMPEG. But I have encountered a few problems I don't know how to solve. The truth is I don't know the program to convert them.

    3 ) Is it possible to show the picture in my camera ?? That means if a user opens the camera from my app, it should show the pictures which are available on the SD card. If so, please advice me.

    EDIT : I have made a sample which can capable of taking 7 screen shots per second.

    Thanks,
    Rajesh .

  • Android : Playing MP3 files with AudioTrack using ffmpeg

    16 juillet 2012, par Vipul Purohit

    I have integrated ffmpeg lib in my project and I can also get the information of media files. But now i have to play mp3 files using AudioTrack class in android using ffmpeg lib.

    For this I have to pass byte buffer to AudioTrack but I dont know how to get byte buffer from ffmpeg and use it with AudioTrack. I also want to play file instantly without delay.

    Here is my audio track code in java :

    AudioTrack track;
    bufferSize = AudioTrack.getMinBufferSize(44100,AudioFormat.CHANNEL_CONFIGURATION_MONO, AudioFormat.ENCODING_PCM_16BIT)
    track = new AudioTrack(AudioManager.STREAM_MUSIC, 44100, AudioFormat.CHANNEL_CONFIGURATION_MONO, AudioFormat.ENCODING_PCM_16BIT, bufferSize, mode);

    //Play audio clip
    track.play();

    while(stream_is_over){
    //Copy the decoded raw buffer from native code to "buffer" .....
    ............
    track.write(buffer, 0, readBytes);
    }

    Can anyone please give me the working code to play mp3 files with audio track. I have searched a lot but haven't find any correct answer.

  • Can red5 be used instead of FFmpeg in Android ?

    3 septembre 2012, par Balwant Kumar Singh

    Can I use red5 as my native library instead of FFmpeg for Android ? I was told that FFmpeg resides inside red5. I'm not able to see the documentation of red5 because the red5 server is down.