Recherche avancée

Médias (91)

Autres articles (35)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

  • Other interesting software

    13 avril 2011, par

    We don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
    The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
    We don’t know them, we didn’t try them, but you can take a peek.
    Videopress
    Website : http://videopress.com/
    License : GNU/GPL v2
    Source code : (...)

Sur d’autres sites (3638)

  • Does RTMP relay server need GPU ? (NodeMediaServer)

    25 août 2020, par Hung Nguyen

    I have a curious about GPU/CPU specs of an RTMP relay server (only push) with NodeMediaServer, that use ffmpeg under the hood.

    


    I think I will receive an RTMP stream from a device and immediately push it to a CDN (that CDN will handle transcode part). So my server doesn't need to handle anything, just a relay server.

    


    So does it need to use GPU in that case ? does a cheap cloud compute (without GPU) is enough for me ?

    


    Thank you so much

  • Library for decoding H.264 RTSP stream

    28 juillet 2015, par Saurabh Gandhi

    I was planning to decode H.264 based RTSP stream using FFMPEG in OpenCV but, when I tried so it gave some errors. Later, I found that many people have faced issues while decoding H.264 stream using ffmpeg (libavcodec). Typically the below mentioned error messages pop-up while using libavcodec :

    "[h264 @ 0xa766dd0]concealing 1200 DC, 1200 AC, 1200 MV errors"

    Has anyone used any other library successfully for decoding H.264 based RTSP. If so, which is the library (I have heard of live555 which is used within vlc player for decoding such streams). I would also like to know the output format and how it can be made compatible with OpenCV (typically within opencv we can use cvQueryFrame to directly extract a frame from a video stream, but in case we are using a library other than ffmpeg how to go about it).

    Thanks in advance.

    Regards,

    Saurabh Gandhi

  • FFMpeg- Raw compressed data to video

    21 août 2012, par p.streef

    I'm trying to use FFMpeg to create a video. So far i've been playing with a multiplexing example :
    http://ffmpeg.org/doxygen/trunk/muxing_8c-source.html, and i'm able to create a compressed video from an already existing video.

    Because my program is going to run on an embedded platform I would like to use some custom code (generated by a colleague) to compress the video data and place it into the video file.
    So I'm looking for a way to create a video file in c/c++ using ffmpeg in which i have full control over the compression part (to basically circumvent ffmpeg from doing the compression for me and inserting my own code).

    To clarify i'm planning to use this to save film from an intelligent camera into a compressed h264 mpeg-4 file.