Recherche avancée

Médias (0)

Mot : - Tags -/médias

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

Autres articles (74)

  • Soumettre bugs et patchs

    10 avril 2011

    Un logiciel n’est malheureusement jamais parfait...
    Si vous pensez avoir mis la main sur un bug, reportez le dans notre système de tickets en prenant bien soin de nous remonter certaines informations pertinentes : le type de navigateur et sa version exacte avec lequel vous avez l’anomalie ; une explication la plus précise possible du problème rencontré ; si possibles les étapes pour reproduire le problème ; un lien vers le site / la page en question ;
    Si vous pensez avoir résolu vous même le bug (...)

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

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

  • libFLAC/lpc_intrin_sseN.c : Disambiguate macro names.

    28 juin 2014, par Erik de Castro Lopo
    libFLAC/lpc_intrin_sseN.c : Disambiguate macro names.
    

    Previously, the files lpc_intrin_sse2.c and lpc_intrin_sse41.c both defined
    macros RESIDUAL_RESULT and DATA_RESULT. This situation made it impossible
    to merge these files which we may do at some stage.

    Patch-from : lvqcl <lvqcl.mail@gmail.com>

    • [DH] src/libFLAC/lpc_intrin_sse2.c
    • [DH] src/libFLAC/lpc_intrin_sse41.c
  • configure.ac : Erase default -O2 when setting -O3.

    27 juillet 2014, par Erik de Castro Lopo
    configure.ac : Erase default -O2 when setting -O3.
    

    Previously CFLAGS had a -O3 at the start and a -O2 at the end. According
    to the GCC docs :

    https://gcc.gnu.org/onlinedocs/gcc-4.9.1/gcc/Optimize-Options.html

    "If you use multiple -O options, with or without level numbers,
    the last such option is the one that is effective" which means that
    GCC doesn’t try to use SIMD to vectorize the code, etc."

    • [DH] configure.ac
  • broadcast HLS/TS Stream from FFMPEG

    2 août 2014, par Dylan Lundy

    I’m still wrapping my head around most of this, so sorry if my issue is an obvious one !

    I’m trying to broadcast a FFMPEG ’stream’ to a HLS stream i can load into a webpage.

    My understanding is that i need a media server to broadcast it from FFMPEG to a HLS stream ? with FFMPEG feeding the data to the server. I’m probably wrong though.

    I previously semi achieved what i want to do with stream-m, however it was too slow (less than 1 FPS) and wasn’t broadcasting in HLS.

    Previously, the steps i went through were to launch the stream-m server. then launce FFMPEG with the following command :

    ffmpeg.exe -f dshow -i video="screen-capture-recorder" -r 1 -g 2 -vcodec libvpx -vb 1024 -f matroska http://localhost:8080/publish/first?password=secret

    I could connect to the stream with Chrome using the following HTML :

    <video src="http://localhost/consume" autoplay="autoplay">
    </video>

    The issue is that this was slow, unusable in fact, and it’s not in HLS/H264.

    I need the feed in the specific codec as i intend to send it to a WiiU browser, which only supports "M3U8+TS(HTTPLiveStreaming)"
    http://www.nintendo.com/wiiu/built-in-software/browser-specs/

    Cheers