Recherche avancée

Médias (91)

Autres articles (19)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 is the first MediaSPIP stable release.
    Its official release date is June 21, 2013 and is announced here.
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

Sur d’autres sites (3083)

  • How can I watch my video from a sdp file ?

    7 avril 2019, par Marco Peca

    I’m using ffmpeg to create a streaming. It works fine. I have a server and with ffplay I can watch my stream.
    My only (big) constraint is real time.

    I have to embed it into an HTML page accessible from mobile devices.
    I tried with HTML5 video tag but I can’t include sdp files into it.

    With ffmpeg I create a stream from my webcam. I have also created the sdp file but in HTML5 doesn’t work.

    The code is here :

    ffmpeg server :

    sudo ffmpeg -re -f video4linux2 -i /dev/video0 -fflags no buffer rtp://224.10.20.30:20000

    file.sdp

    v=0
    o=- 0 0 IN IP4 127.0.0.1
    s=No Name
    c=IN IP4 224.10.20.30
    t=0 0
    a=tool:libavformat 55.7.100
    m=video 20000 RTP/AVP 96
    b=AS:200
    a=rtpmap:96 MP4V-ES/90000
    a=fmtp:96 profile-level-id=1

    ffplay : (It works)

    ffplay file.sdp

    How can I view the stream in a browser ?

  • avcodec/sonic : Fix integer overflow in predictor_calc_error()

    21 octobre 2019, par Michael Niedermayer
    avcodec/sonic : Fix integer overflow in predictor_calc_error()
    

    Fixes : signed integer overflow : 5 * -1094995529 cannot be represented in type 'int'
    Fixes : 18346/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_SONIC_fuzzer-5709623893426176

    Found-by : continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/sonic.c
  • avcodec/sonic : Check e in get_symbol()

    21 octobre 2019, par Michael Niedermayer
    avcodec/sonic : Check e in get_symbol()
    

    Fixes : signed integer overflow : 1721520852 + 1721520852 cannot be represented in type 'int'
    Fixes : 18346/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_SONIC_fuzzer-5709623893426176
    Fixes : 18753/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_SONIC_fuzzer-5663299131932672

    Found-by : continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/sonic.c