Recherche avancée

Médias (1)

Mot : - Tags -/getid3

Autres articles (6)

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

  • Automated installation script of MediaSPIP

    25 avril 2011, par

    To overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
    You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
    The documentation of the use of this installation script is available here.
    The code of this (...)

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

  • Revision 89cc421e89 : Reformat non-RD coding flow This commit reformats non-RD coding flow layout to

    20 mars 2014, par Jingning Han

    Changed Paths :
     Modify /vp9/encoder/vp9_encodeframe.c



    Reformat non-RD coding flow

    This commit reformats non-RD coding flow layout to allow mode
    decision with fixed and variable block sizes.

    Change-Id : I2cdd3bb9f26c499ee4a9849004fd925cdd195d09

  • FFMPEG ignoring attempts to set user agent or other headers

    19 janvier 2020, par lmsm3

    I am on Windows, using the latest build from Zeranoe wich was linked on the ffmpeg site.
    My command is

    ffmpeg.exe -headers 'User-Agent: "This does not Work"' -protocol_whitelist file,http,https,tcp,tls,crypto  -i "local.m3u8" -c copy "out.mp4" -v trace

    My local.m3u8 file is

    #EXTM3U
    #EXT-X-TARGETDURATION:10
    #EXTINF:10.000,
    http://127.0.0.1/
    #EXT-X-ENDLIST

    On localhost i have a simple server running that logs the user agent. It outputs

    { 'user-agent': 'Lavf/58.29.100',
     accept: '*/*',
     connection: 'keep-alive',
     host: '127.0.0.1',
     'icy-metadata': '1' }

    The user agent has not been set. I have tried using -user-agent "test" and -user_agent "test" instead of -header, and have tried putting the arguments in a different order, no success.
    The trace Output of -v trace is https://pastebin.com/raw/W9hsjraT

    Why is the User Agent not being overwritten, and how can i overwrite it ?

  • FFMPEG -User-Agent command not working on linux

    4 janvier 2014, par user3145169

    I installed ffmpeg on my server through putty. Using these commands.

    rpm -Uhv http://packages.sw.be/rpmforge-release/rpmforge-release-0.5.2-2.el6.rf.x86_64.rpm

    yum install ffmpeg ffmpeg-devel

    After I tried to run this commmand.

    ffmpeg -user-agent AppleTV/2.4 -i "http://mywebsite/mystream.mp4" -async 1 -r 21 -c:v libx264 -profile:v baseline -crf 27 -maxrate 900k -bufsize 1350k -g 42 -threads 1 -c:a libmp3lame -b:a 96k -ar 44100 -ac 2 -f flv "rtmp://mystreamhost/streamkey"

    I am now getting error "unrecognized option -user-agent"

    I want to set user agent because I let people connect directly to my stream with apple tv only - but I would still like to be able to spoof this connection, so I can restream to another flash host. Anybody see why I would be getting this error ? Maybe an old build of ffmpeg ? This command works from my windows desktop though, so I'm confused. Thanks.