Recherche avancée

Médias (91)

Autres articles (60)

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

  • Librairies et binaires spécifiques au traitement vidéo et sonore

    31 janvier 2010, par

    Les logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
    Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
    Binaires complémentaires et facultatifs flvtool2 : (...)

Sur d’autres sites (6415)

  • lavc/dds : replace rint by lrint

    26 décembre 2015, par Ganesh Ajjanagadde
    lavc/dds : replace rint by lrint
    

    avoids float to int cast.

    Signed-off-by : Ganesh Ajjanagadde <gajjanagadde@gmail.com>

    • [DH] libavcodec/dds.c
  • lavc/snowenc : replace rint by lrint

    26 décembre 2015, par Ganesh Ajjanagadde
    lavc/snowenc : replace rint by lrint
    

    avoids float to int cast.

    Reviewed-by : Michael Niedermayer <michael@niedermayer.cc>
    Signed-off-by : Ganesh Ajjanagadde <gajjanagadde@gmail.com>

    • [DH] libavcodec/snowenc.c
  • ffserver webm streaming issue with Firefox browser

    1er septembre 2015, par Venkatesh Babu Dargah

    I’m attempting to cast my desktop screen to an ffserver and stream it as a webm. I’m using the following ffserver configuration :

    HTTPPort 8091
    MaxHTTPConnections 20000
    MaxClients 10000
    MaxBandwidth 10000

    CustomLog -

    File /tmp/feed1.ffm
    FileMaxSize 1G
    ACL allow 127.0.0.1

    Format webm
    Feed feed1.ffm

    Video settings

    VideoCodec libvpx
    VideoFrameRate 30
       VideoBitRate 512
    VideoSize 320x240
       MaxTime 0
       AVOptionVideo me_range 16
       AVOptionVideo qdiff 4
       AVOptionVideo qmin 4
       AVOptionVideo qmax 40
       AVOptionVideo quality good
       AVOptionVideo flags +global_header

    Streaming settings

       PreRoll 10
       StartSendOnKey

    Audio settings

       AudioCodec libopus
       AudioBitRate 128
       AudioSampleRate 48000
       AVOptionAudio flags +global_header
       Metadata author "author"
       Metadata copyright "copyright"
       Metadata title "Web app name"
       Metadata comment "comment"

    I am using ffmpgeg to capture video from my desktop using
    ffmpeg -f v4l2 -s 320x240 -r 25 -i /dev/video0 -f alsa -ac 2 -i hw:0 http://localhost:8091/feed1.ffm/

    i am able to see this stream in chrome.
    but Firefox is showing message as MIME type not supported and not able to decode.
    but if I run the same webm video from static file it is playing in firefox
    but if I try to access via http://localhost:8091/live1.webm i am getting MIME type error,
    please let me know what additional settings need to be done in Firefox to play webm videos from my server address and port.
    Again I am reiterating that this is playing ok in chrome but not in Firefox.

    Please reply.

    hi all,

    i am able to play in firefox also after i changed audiocodecs to libvorbis and removing AudioChannels parameter from ffserver config file.

    thanks for your attention