Recherche avancée

Médias (1)

Mot : - Tags -/école

Autres articles (48)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

  • Contribute to translation

    13 avril 2011

    You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
    To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
    MediaSPIP is currently available in French and English (...)

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

  • IPCamera on my LAN streaming video using RTSP with ffmpeg in android

    16 juillet 2012, par LMDS

    I have an IPCamera on my LAN streaming video using RTSP. I have been able to capture and display it successfully using MediaPlayer or Videoview, but now I need to do it for more then one streamming.

    After doing some research I found out that I have to use ffmpeg to decode/encode video stream. I can compile the ffmpeg libraries using and I know how to use the NDK, (this link was very helpfull http://marakana.com/s/introduction_to_ndk,1153/index.html)

    So I would like to achieve is using programming in C/C++ using ffmpeg library to do that.

    So let me phrase two simple questions :

    How do I receive the stream in a C/C++ program using FFMPEG library (just provide some URL/tutorial, as google was not helpful)

    How do I display the received video in ? (same here, some good URL to direct me).

  • streaming while displaying locally [duplicate]

    17 mars 2021, par Olivier

    I'm trying to stream a V4L2 device over UDP while displaying it locally too

    


    streaming is ok :
    
ffmpeg -f v4l2 -i /dev/video0 -preset ultrafast -vcodec libx264 -tune zerolatency -b:v 900k -f mpegts udp://x.x.x.x:8554

    


    playing is ok too : ffplay -f v4l2 -i /dev/video0

    


    and after googling and searching around I found few infos here about using tee

    


    I tried and tried again until I found an error free command line ffmpeg -f v4l2 -i /dev/video0 -preset ultrafast -vcodec libx264 -tune zerolatency -b:v 900k -f mpegts udp://x.x.x.x:8554 -f mpegts -| tee >(ffplay -f mpegts -i -)

    


    except it doesn't open a window with video display but full filling terminal with garbage characters
any help / idea / advice will be much appreciated

    


  • Convert Video to HTML5 formate on live streaming

    30 juin 2016, par php-coder

    this may be answered before but i am not able to find the correct answer for my problem.

    I am developing a site in PHP where user can upload a video in any format (only video format), the format can be any wmv, avi, flv, mp4 etc.

    But I only need to play that video using html5 video tag, but HTML5 only support mp4, WebM and Ogg extension. And I don’t want to convert the video to any other format other than original due to some copyright rules.

    now I come up to conclude to convert original video to html5 supported on live streaming, so I have gone through everywhere and google it so many time and other ways but I only find the solution for FFMPEG which convert my video to html5 support and save on my server which i don’t want, as that make much burden on my server saving same video in three different formats....

    So, I need a help if anyone can suggest me how I can use video with any format to play it on HTML5 video tag.

    Thanks in advance.