Recherche avancée

Médias (1)

Mot : - Tags -/berlin

Autres articles (98)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

Sur d’autres sites (12862)

  • MPEG-TS, Android and FFMPEG

    31 janvier 2013, par STeN

    I am receiving the MPEG-TS (MPEG transport stream) packets with the multiplexed H.264 video and AAC audio streams. I need to be able to show the audio and video on the Android phone. My assumption is that I need :

    • MPEG-TS de-multiplexer
    • AAC decoder
    • H.264 decoder
    • Synchronize the audio and video playback

    Assuming that I am right then (in Android 2.x) MPEG-TS de-multiplexer is not part of the OS and must be ported, both AAC and H.264 decoder are part of the Android OS, but I am not sure if they have interface, which allows passing the data in buffers and if they allow mutual timing synchronization. In the worst case those components must be ported here as well.

    Can you give me some advices where to start ? I was thinking about the FFMPEG porting. Are there any other ways ?

    Regards,
    STeN

  • Play RTP stream on Android

    11 décembre 2016, par Othman Mohammad

    I’m using ffmpeg to stream microphone to an Android application.
    So far, I successfully managed to stream the audio (Test it with ffplay and VLC) :

    ffmpeg -ar 48000 -f alsa -i hw:0 -acodec mp2 -b:a 384k -f rtp rtp://127.0.0.1:1234

    Now how can I play the stream on an Android application ?

    Thank you

  • How to use guardianproject's ffmpeg library for android

    24 juillet 2014, par Abdul Qadir

    Here’s the link to the ffmpeg android library I’m trying to use :
    https://github.com/guardianproject/android-ffmpeg

    I’m trying to follow what is written in this post in order to use it :
    http://stackoverflow.com/a/21553337/1462190

    1. Included the ffmpeg library project into the eclipse. (File > Import)
    2. Added the ffmpeg library to my application. (Right clicked my project’s name > Properties > Android > Library)

    However I can’t get it to work. I get the following errors :

    In console :

    android-ffmpeg-library] Could not find android-ffmpeg-library.apk!

    In DDMS :

    07-24 17:00:24.990: E/AndroidRuntime(23935): java.lang.NoClassDefFoundError: org.ffmpeg.android.FfmpegController

    I have no clue to what could be the problem. Although i’m noticing one thing which I think I should mention here. After the second step, when I add the library, I see the green check indicating everything is fine. But after I run my application (which crashes before it launches) I see a red cross which of course indicates something’s wrong.

    Before I run my application :

    enter image description here

    After I run my application :

    enter image description here

    Any help would be appreciated ! thank you !