Recherche avancée

Médias (1)

Mot : - Tags -/livre électronique

Autres articles (16)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 is the first MediaSPIP stable release.
    Its official release date is June 21, 2013 and is announced here.
    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 (...)

Sur d’autres sites (4605)

  • decoding different programs from a mpts using ffmpeg [on hold]

    9 janvier 2017, par Enri Koci

    Is there a way to decode different programs (h264 encoded) using ffmpeg (with the sdl option) simultaneously from a mpts live udp stream ?
    Creating something like a mosaic view of the programs of a mpts stream.

  • RTSP relay on iOS using swift [on hold]

    15 novembre 2015, par kiran_g

    I need to implement an RTSP relay. I have already done this for raspberry. Basically the app on raspberry pi needs to PULL and RTSP feed from an IP camera and PUSH it to another PC. I did it using the following ffmpeg command :

    ffmpeg -i "rtsp://10.10.10.2:1001/stream" -vb 150000 -g 60 -vprofile baseline -level 2.1 -acodec aac -ab 64000 -ar 48000 -ac 2 -vbsf h264_mp4toannexb -strict experimental -f rtsp rtsp://10.10.10.3:1234/live/stream

    Now I need to implement the same thing using an iOS app (swift). Can someone suggest any third party libraries which can do this. Basically it needs to do RTSP PULL from one side and do RTSP PUSH on the other side. An optional requirement will be displaying the stream being relayed.

  • How to encode BGRA sequence to H.264 video stream using FFmpeg [on hold]

    31 octobre 2016, par Galaxy

    Now I have a frame of BGRA data stored in an array, which is kept being updated under a certain frame rate. Can I use FFmpeg to encode it to a H.264 video stream ? Is there any API I can leverage ?

    This is used as a live H.264 video stream, so I need to write the header at the beginning and send the stream to my server through RTMP. I’m not sure if FFmpeg is suitable for this task. I also heard about GSteamer, I don’t know which one is better to me.

    I’m developing on OS X using C++.