Recherche avancée

Médias (1)

Mot : - Tags -/graphisme

Autres articles (89)

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

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

  • Configuration spécifique d’Apache

    4 février 2011, par

    Modules spécifiques
    Pour la configuration d’Apache, il est conseillé d’activer certains modules non spécifiques à MediaSPIP, mais permettant d’améliorer les performances : mod_deflate et mod_headers pour compresser automatiquement via Apache les pages. Cf ce tutoriel ; mode_expires pour gérer correctement l’expiration des hits. Cf ce tutoriel ;
    Il est également conseillé d’ajouter la prise en charge par apache du mime-type pour les fichiers WebM comme indiqué dans ce tutoriel.
    Création d’un (...)

Sur d’autres sites (3024)

  • Fix the timeout option not working when connecting to a HTTP url that requires authen...

    15 novembre 2014, par Brandon Lees
    Fix the timeout option not working when connecting to a HTTP url that requires authentication.
    

    In http_open_cnx, the patch restores the AVDictionary if connection needs to be re-tried
    because of a authentication/redirect status code.

    Previously, if a 401/407/30x status code was encountered, http_open_cnx would restart at the redo label, but any options
    used by the underlying protocol would be missing because they were removed by the first attempt.

    Signed-off-by : Brandon Lees <brandon@n-hega.com>
    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavformat/http.c
  • http: avoid logging reconnect warning if stream was aborted

    4 janvier 2018, par wm4
    http: avoid logging reconnect warning if stream was aborted
    

    If the stream was aborted using the libavformat interrupt callback, we
    don't want it to log the reconnect warning. (Exiting after logging this
    warning worked well, so this is only for avoiding the ugly warning.)

    • [DH] libavformat/http.c
  • FFMPEG convert RTSP to HTTP streaming video

    16 février 2017, par Paolo Gdf

    I have a IpCam that send streaming video only on rtsp ://ipaddress/live.
    My software accept only streaming video over HTTP.

    So I thing that could use FFMPEG to convert streaming from RTSP to HTTP.

    I have installed FFMPEG on Windows 7 and I have try an example to convert RTSP to video file : ffmpeg -i rtsp://192.168.0.43:1256 -r 15 C:/output/video.mp4 and it works.

    Can any help me to convert RTSP to HTTP streaming (i use Windows 7 S.O.).

    Thank you.