Recherche avancée

Médias (3)

Mot : - Tags -/image

Autres articles (98)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • 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 (10655)

  • Stream audio (only) from ffmpeg to Android application

    28 novembre 2016, par Othman Mohammad

    I’m trying to implement a simple system to stream voice from microphone to an Android app.
    To stream, I used the ffmpeg program.
    I tried the following command :

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

    and I was able to start the server.

    Then, I used the command :

    ffplay rtp://127.0.0.1:1234

    and everything worked properly.

    Now I need to play this stream in an Android mobile app.

    I saw this code somewhere in stackoverflow :

    Intent i = new Intent(Intent.ACTION_VIEW, Uri.parse("rtsp://192.168.0.100"));
    startActivity(i);

    but the app crashed, stating that :

    android.content.ActivityNotFoundException: No Activity found to handle Intent { act=android.intent.action.VIEW dat=rtp://192.168.0.100:1234

    Can anyone help me with the Android code to play the stream ?
    Plus, am I using the right protocol (RTP) or should I use RTSP ?

    Thank you.

  • Android JNI architecture target for use with multiple devices

    8 mai 2012, par William Seemann

    When using JNI in Android does the C code need to be compiled to adhere to all different types of ARM architectures ? For instance if I compile ffmpeg for armeabi can I use it on all Android devices or do I need to compile it to different targets such as armeabi-v7a ?

  • Streaming from gopro to android

    28 septembre 2017, par Marco Bernardi

    I’m try to send the video stream from gopro to android.
    I connect and manage the gopro via http thanks to guide of KonradIt https://github.com/KonradIT/goprowifihack
    With ffmpeg android library we managed the streaming
    http://writingminds.github.io/ffmpeg-android-java/
    but i can see only the information about the frame and i can send the
    stream to my computer (attacched to gopro) and see it with vlc.
    The ffmpeg command launched from the application android is :

    ffmpeg -an -f:v mpegts -i udp ://:8554 -an -f:v mpegts udp ://10.5.5.101:8555

    But we want see the stream directly on app android.

    How can do it ?