Recherche avancée

Médias (91)

Autres articles (40)

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

  • Using FFmpeg with Android-NDK

    16 septembre 2019, par iSun

    I want to use FFmpeg with Android-NDK and I am very basic in this section, I need some help and I research about this topic before on the net, but got no satisfactory solution.

    1 - How can I use FFmpeg through Windows OS. (I do not want to use Ubuntu, please do not suggest.)

    2 - How can I inset FFmpeg commands via NDK ?

    Last notice : I using android-ndk-r7b and Cygwin.

    Any suggestion would be appreciated.

  • Using FFmpeg with Android-NDK

    4 février 2014, par iSun

    I want to use FFmpeg with Android-NDK and I am very basic in this section, I need some help and I research about this topic before on the net, but got no satisfactory solution.

    1 - How can I use FFmpeg through Windows OS. (I do not want to use Ubuntu, please do not suggest.)

    2 - How can I inset FFmpeg commands via NDK ?

    Last notice : I using android-ndk-r7b and Cygwin.

    Any suggestion would be appreciated.

  • live stream RTSP to html all browsers

    30 juin 2020, par jimmy

    I have a situation and cant find an answer online maybe you could help me.

    



    I am trying to stream an rtsp stream to HTML basically,
I converted the stream to his/m3u8 local dir using ffmpeg, 
my problem is displaying the hls to my web page and get it to work on the main browsers like chrome ,Firefox etc.

    



    the only way i got it to work is by using python command "python -m http.server" to my local dir(where the hls stream was saved) and it works on I.E browser.

    



    and all i did needs to be done on the back end (asp.net app).

    



    i did not write lot of code, i am currently trying to make it work on a simple HTML page once it will work i will make the asp page. that is what i have so far.
ffmpeg command ffmpeg -i rtsp ://wowzaec2demo.streamlock.net/vod/mp4:BigBuckBunny_115k.mov -y -c:a aac -b:a 160000 -ac 2 -s 854x480 -c:v libx264 -b:v 800000 -hls_time 10 -hls_list_size 10 -start_number 1 Stream/video.m3u8.

    



    python command : python -m http.server,
to transport my converted stream "Stream/video.m3u8" to http server local host:8000 for testing)

    



    sample HTML page (it a sample from hls.js posted on GitHub https://github.com/video-dev/hls.js/blob/master/demo/basic-usage.html )

    



    Just edited the video html tag to http://localhost:8000/stream/video.m3u8 as a source.

    



    thank you.