Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP 0.2

Autres articles (111)

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

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

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

Sur d’autres sites (14771)

  • Streaming webcam/video file from android device(Akash Tablet here) to rtmp server (RED5)

    22 février 2014, par Dev

    i am using ffmpeg for video streaming from android device to rtmp server red5 (ubuntu , and eclispe IDE for android programming). in my previous project simply i used commands of ffmpeg for video streaming and webcam streaming , in that project i was using window-7 and netbeans IDE , i was sending file from one desktop to another using red5 server, and same for webcam streaming , simply can i say i developed a video conferencing system (web-based, using window-7). now same thing i want for android platform. i want to send video fileand webcam capture video , from my android device to red5 srever. simply i want to develop a app for android - a video conferencing system , this is my project in my college. but here in this task i am facing many problems using ffmpeg, i can not use ffmpeg commands here i think. i am using android SDK and NDK/JNI , eclipse IDE ..plese suggest me how to use ffmpeg in android platform , thanks

  • HLS-streaming on VLC - cookies alternative

    5 juillet 2018, par unicornslayer

    I’m trying to build a streaming web api which creates m3u8 playlists of .ts files in .net core.

    I’ve built the live streaming option and it works fine on vlc.

    For example, in VLC -> File -> Open Network put my link : http://localhost:39986/api/Stream/MyChannel/index.m3u8 and VLC gives me the live version of the channel.

    But I need to implement the option of starting a video from a fixed time : http://localhost:39986/api/Stream/MyChannel/index.m3u8?timeStr="2018-07-04T17:16:01". In this case, I would need to create a session to know from which point to create the playlist, right ?[1]

    If so, sessions require an ID stored as a Cookie (right ?[2]). But from what I’ve read and what I’ve tested, vlc doesn’t support cookies.

    So my question is : is there any workaround for this scenario ?[3]

    It’s an university project and I am very confused about this task.

  • How to continuously extract video frames from streaming RTMP using avcong / ffmpeg ?

    7 octobre 2013, par mvbl fst

    We're dealing with streaming video on RTMP and my goal is to extract frames from the stream at a given interval, e.g. every 1 second.

    Currently I run a command in a loop, which takes a frame and exports it as base64 JPEG :

    avconv -i <url> -y -f image2 -ss 3 -vcodec mjpeg -vframes 1 -s sqcif /dev/stdout 2>/dev/null | base64 -w 0
    </url>

    But each of these processes is long (takes a few seconds — which adds even more delay on streaming video that's not real time already). I am wondering if there is a way to make avconv or ffmpeg to extract frames at an interval (in seconds or frames) and either save as a file or dump to stdout.

    I would really appreciate your help !