Recherche avancée

Médias (1)

Mot : - Tags -/book

Autres articles (64)

  • Les images

    15 mai 2013
  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

Sur d’autres sites (7442)

  • ServiceMenu(dolphin) + Kdialog(progress) + ffmpeg

    3 juillet 2023, par manuel

    i don't find any guide for 3 things mixed : ServiceMenu(dolphin) + Kdialog(progress) + ffmpeg

    


    here start script :

    


    # requists: kdialog , ffmpeg, Dolphin (Kde5)

[Desktop Entry]
Type=Service
ServiceTypes=KonqPopupMenu/Plugin
MimeType=video/*;
Actions=ConvertMP4-default
X-KDE-Priority=TopLevel
X-KDE-Submenu=[ Man ] VIDEO-->> convert
Icon=gtk-convert;

[Desktop Action ConvertMP4-default]
Name=Convert in MP4 (default)
Icon=video-mp4
Exec=ffmpeg -i %U -f mp4 %U-CONVERTED.mp4


    


    save in file test.desktop

    


    i wish to make it works servicemenu + kdialog + ffmpeg...not find easy solution..

    


  • ffmpeg - caching ahead piped input as insurance while maintaining low latency and real-time output

    5 décembre 2020, par hedgehog90

    I'm piping a live transcoded stream into ffmpeg (simplified for brevity) :

    


    mpv playlist --o=- | ffmpeg -re -i - -tune zerolatency -f flv rtmp://blah.com/live

    


    The piped input usually runs above 1x encoding speed, but every now and then it can run a little slower than real-time (just a momentary 0.99x or 0.98x dip).
When this happens, the rtmp server (a popular streaming service with an audience) output will pause momentarily for a couple seconds usually.

    


    To overcome this I want ffmpeg to cache a few seconds in advance, so mpv's output (which outputs at whatever speed it's read, so potentially very fast) can supply ffmpeg with a little extra, and whenever mpv goes a little under 1x speed, there's a little insurance that ffmpeg has cached away. This should be doable while maintaining the lowest possible latency.

    


    Question is, how ?

    


  • Best and latest live video streaming soloution [on hold]

    3 avril 2015, par Ford

    I have read a few old posts on StackOverflow about live video streamins, but as they are from around 2008, i assume things have moved on from then... and wonder if a current thread will be useful to me and others.
    Also looking on google gives lots of stuff, but again i dont know who is best to listen to and who is trying to sell their stuff (not that i am against paying).

    Basically what are the main points i need to know in order to add/develope a feature to a website in order to offer "1 on 1" and "1 to many" MULTIPLE live streaming webcam, with voice and text chat.

    I am quiet competent with PHP, OK with basic JavaScript (of course fine with HTMLL/css), but do not know what code i would need for client side software, or if any "off the shelf" software is suitable.
    I have played with ffmpeg and noticed this offers streaming, but i dont know if it would be suitable or the best available option.?
    I have a dedicated server with virtualization so can add a dedicated box for streaming if needed/better.

    Any info that can point me off in the right direction of how to add a live streaming service to a website would be much appreciated !