Recherche avancée

Médias (2)

Mot : - Tags -/rotation

Autres articles (101)

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

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

Sur d’autres sites (9105)

  • Android FFmpegMediaPlayer - MediaPlayer error(0, 0)

    14 décembre 2016, par Dionis Beqiraj

    I’m using this piece of code to play an acc that is on the cloud with FFmpegMediaPlayer taken from here :

    https://github.com/wseemann/FFmpegMediaPlayer

    Code :

    FFmpegMediaPlayer player = new FFmpegMediaPlayer();
    try {
     player.setAudioStreamType(AudioManager.STREAM_MUSIC);
     player.setDataSource(url);
     player.prepareAsync();
    } catch ( IOException | ExecutionException | InterruptedException e ){
         e.printStackTrace();
    }

    When the URL format is like "http://something.com/audio.aac" that code works fine.

    But, when the URL is like "https://something.com/audio.aac?something_else_here" that code doesn’t work and it fires en Error(0,0).

    Before FFmpegMediaPlayer I used the MediaPlayer with exact the same methods. Sometimes it had the same problems sometimes not, so I thought to switch to FFmpegMediaPlayer even because it is faster, but I’m not handling this error.

    Does anyone now how to deal with this ?

  • Android live streaming [on hold]

    26 mai 2015, par Kelvin

    I’m currently on a project which is about to develop a android app to view surveillance camera’s live stream through internet. I know when the video stream transferred through internet will not be a 0 second delay live stream and the legacy could be high.

    The current structure of the system is : the traditional surveillance(cameras+NVR+storage ...) + broadcast server + app. The broadcast server will get streams from cameras\NVR\Storage. It supports RTSP\HTTP\RTMP.

    I googled it for two days, and I found some ways to do this.
    The first way is to use webview + js player. The second way is to use the video view and the Third way is to use FFMPEG or other libraries.

    My questions are :

    Can video view play live stream with url like "rtsp ://172.22.35.161:8554" ? All the tutorial I found is about play a video file using rtsp protocol.

    How’s the performance of using webview + js player (or Html5 player) ? Any suggested player I can use ?

    If using the FFMPEG or other libraries, is there any suggested library or tutorial ?

    Thanks for your patient of reading my question and thanks for you help in advance.

  • FFMPEG Streaming Running 3x Faster

    17 novembre 2014, par Zohaib Khalid

    Hey i’m recording stream from an IP camera with FFMPEG . But when i play it in VLC or Media Player after recording the video player 3x faster. The Input to ffmpeg is :

    ffmpeg -i "http://10.11.16.127:90/livestream.cgi?user=admin&pwd=&streamid=0&audio=0&filename=" -c:v libx264 -t 300 -an output.mp4

    Any Help would be appreciated.
    I am using FFMPEG in windows machine.