Recherche avancée

Médias (0)

Mot : - Tags -/diogene

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (79)

  • Qualité du média après traitement

    21 juin 2013, par

    Le bon réglage du logiciel qui traite les média est important pour un équilibre entre les partis ( bande passante de l’hébergeur, qualité du média pour le rédacteur et le visiteur, accessibilité pour le visiteur ). Comment régler la qualité de son média ?
    Plus la qualité du média est importante, plus la bande passante sera utilisée. Le visiteur avec une connexion internet à petit débit devra attendre plus longtemps. Inversement plus, la qualité du média est pauvre et donc le média devient dégradé voire (...)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

Sur d’autres sites (8366)

  • Generate mpeg-dash live content from transport stream UDP input using ffmpeg/mp4box

    17 août 2018, par Ishaan Shringi

    I’m receiving mpeg-2 transport stream UDP input. I want to serve this content using an HTTP server.

    I know that mp4box can be used to grab the udp and dump it in a file.

    mp4box -grab-ts udp://ip:port dump.ts

    mp4box can generate mpeg-dash content using -dash argument

    Is it possible to combine the -grab-ts argument with -dash-live and generate live dash content ?

  • FFmpeg conform DASH to YouTube Live Stream requirements

    4 septembre 2023, par Aniol Pagès

    I'm trying to stream to YouTube using FFmpeg and DASH. I've generated the stream key and I'm successfully sending the generated files to YouTube. However, YouTube refuses the MPD manifest because it has two AdaptationSet (one for video and one for audio), and the documentation specifies that I should use only one for both video and audio

    


    I've tried to use the -adaptation_sets flag unsuccessfully, and also the -map flag.

    


    Here is one of the commands I've tried :
ffmpeg -re -i "/Users/user/Desktop/file.mp4" \        -map 0:v -map 0:a \        -use_template 1 -use_timeline 1 -window_size 5 -min_seg_duration 5000000 \        -f dash dash.mpd

    


    And with the -adaptation_sets flag :
ffmpeg -re -i "/Users/aniolpages/Desktop/2023-09-03 Taller colar filtrar assubtilar.mp4" -map 0 -map 0 -c:a aac -c:v libx264 \ -use_timeline 1 -use_template 1 \ -window_size 5 -adaptation_sets "id=0,streams=v id=1,streams=a" \ -f dash dash.mpd

    


    Has someone been successful to conform the manifest to YouTube requirements ?

    


    Thank you very much !

    


  • How to HTTP live stream from a continuous sequence of images [on hold]

    26 avril 2017, par alez

    I can get a continuous sequences of images from a camera. The camera is on a Windows machine and I grab the images via a C# SDK.

    I need to generate a video stream from these images, delivered via an http server.

    I can generate an udp video stream in mpegts format using ffmpeg.
    The web server is nginx on a linux machine, how can I use this stream to deliver the video on an HTML5 page ? Also with software other than ffmpeg.

    P.S. I’m using ffmpeg via Process, but I could use a wrapper like FFmpeg.AutoGen.