Recherche avancée

Médias (91)

Autres articles (81)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

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

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

Sur d’autres sites (11072)

  • ffmpeg video segmentation for hls (m3u8) not displaying current time and duration

    27 janvier 2015, par Yuri A. Brito

    I’m following the tutorial on http://www.bogotobogo.com/VideoStreaming/ffmpeg_http_live_streaming_hls.php

    I can play the file on VLC. However, it doesn’t show the current time neither the total video duration.

    When I try to play it on safari using html5’s , it gives me an error (on embedded quicktime)

    How can I make it work on safari and show times ?

    I’m using ffpmeg 2.5.3 and the following command :

    ffmpeg -i source.mp4 -map 0
    -codec:v libx264 -codec:a libfaac
    -f ssegment -segment_list playlist.m3u8
    -segment_list_flags +live -segment_time 10
    out%03d.ts
  • libx264 : Define X264_API_IMPORTS on MSVC/ICL

    19 juillet 2013, par Derek Buitenhuis
    libx264 : Define X264_API_IMPORTS on MSVC/ICL
    

    libx264 has a few data exports which require X264_API_IMPORTS
    to be defined if we link to libx264 dynamically on Windows.

    In a similar fashion to how we handle our compat snprintf
    implementation, if we define it all the time, the compiler
    will first try and link to __imp_x264_symbol_name, and failing
    that, as in the case of a static libx264, will attempt to link
    to the non-prefixed symbol, which has already been pulled in by
    other x264 functions’ object files.

    Signed-off-by : Derek Buitenhuis <derek.buitenhuis@gmail.com>

    • [DH] libavcodec/libx264.c
  • Rendering video streaming in android sdl ? or ?

    15 avril 2013, par user1568549

    I've successfully cross-compiled a c++ video streaming library to the android ICS platform

    This library contains a sample player that uses sdl library to render the resulting decoded video streams and libav for decoding that i've also succeeded to cross compile(libav ... classes) Then, i 've made the necessary jni classes and tested it using log tags it seems that everything is fine but now i want to show the result on the screen(show the real streaming not just log messages)

    I am searching for the easiest way to render my stream (just to be sure that everything works fine)

    Am i oblige to cross compile the sdl library too ? is it possible ? if yes is there any good tutorial ?

    Is there any other solution to render directly ffmpeg decoded frames ?