Recherche avancée

Médias (0)

Mot : - Tags -/latitude

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

Autres articles (67)

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

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

  • De l’upload à la vidéo finale [version standalone]

    31 janvier 2010, par

    Le chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
    Upload et récupération d’informations de la vidéo source
    Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
    Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)

Sur d’autres sites (6921)

  • Revision a37e84d1d0 : msvs : Don't link to winmm.lib Linking to this library doesn't seem to be necess

    19 mai 2013, par Martin Storsjo

    Changed Paths :
     Modify /examples.mk


     Modify /libs.mk



    msvs : Don't link to winmm.lib

    Linking to this library doesn't seem to be necessary, and this library
    isn't available in the windows phone API subset.

    Change-Id : I179837d6f9c7407f1cb6101533dc978316a30adf

  • lavfi/trim : mark link closed on EOF.

    2 juin 2013, par Nicolas George
    lavfi/trim : mark link closed on EOF.
    

    Fix trac ticket #2620.

    • [DH] libavfilter/trim.c
  • how to link ffmpeg libs with android system libs

    7 juin 2013, par user718146

    I am using ffmepg to develope my own functionality for my android system,
    I have gotten ffmpeg libs (libavutil.a and so on) by building ffmpeg project using android NDK
    Static libs can be linked by declaring LOCAL_LDFLAGS += lib in Android.mk, however, my ffmpeg libs could not be linked for my project with android system compilation, a vast Error (undefined reference to 'av_xx' ) occurred during compilation process
    I did another test of linking the ffmpeg libs in my project that is NDK compiled, the libs were linked without error
    my own functionality im developing can only be compiled under android source code, how do i fix it, please help