Recherche avancée

Médias (0)

Mot : - Tags -/auteurs

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

Autres articles (74)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

  • Dépôt de média et thèmes par FTP

    31 mai 2013, par

    L’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
    Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...)

Sur d’autres sites (10557)

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

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