Recherche avancée

Médias (91)

Autres articles (101)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

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

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

Sur d’autres sites (6976)

  • Reading from IP Camera (RTSP) using FFmpeg results in 5xx Server Error

    9 décembre 2015, par bcop

    I have a scenario where I am trying to read from IP camera using RTSP method.

    On my development PC everything is working fine, the rtsp url is something like :

    rtsp://admin:12345@192.168.1.60:554

    but when I try to test it over a friend’s place, he has different camera (Axis IP camera), and the url fails to open.
    The self generated log is something like :

    Error: avformat_open_input()
    error message: Server returned 5XX Server Error reply

    I tried opening it using HTTP tunneling, but this time I’m getting a different error :

    error message: Error number -5 occurred

    The latter error message even appears on my dev PC (just to mention that I tried this as well) ; so HTTP tunnel is no good.

    Any one knows how to fix 5XX Server Error ?

    Thanks,

  • FFmpeg trim and loop video

    24 novembre 2018, par Praveen Tamil

    In my scenario, I would like to trim the source video and loop it for specified times. And below is my code

    ffmpeg -i source.mp4 -filter_complex "[0:v]trim=start=6:end=46,loop=5[vf];[0:a]atrim=start=6:end=46,aloop=5[af]" -map "[vf]" -map "[af]" output.mp4 -y

    For this I have to get 200 seconds video as a output.mp4. But I got video with 40 seconds duration.

  • RTSP to RTMP in iOS as Transcoding

    15 mars 2019, par Naman Sheth

    I am getting live feed from some IP camera as an RTSP url and then i want to convert it to RTMP.

    Here is two aspects that we have to implement

    1. What we convert from RTSP to RTMP is transcoding.
    2. I have my iPad/iPhone Camera that user can switch and add live feed to RTMP url at this point I want to stop RTSP feed. i.e. Encoding

    This all scenario want to do with FFMPEG

    I have searched on this url but not able to figure out in iOS

    ffmpeg -i "[your rtsp link]" -f flv -r -s -an "[Your rtmp link]"

    RTSP to RTMP streaming

    Thanks in Advance !