Recherche avancée

Médias (1)

Mot : - Tags -/lev manovitch

Autres articles (81)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

  • Menus personnalisés

    14 novembre 2010, par

    MediaSPIP utilise le plugin Menus pour gérer plusieurs menus configurables pour la navigation.
    Cela permet de laisser aux administrateurs de canaux la possibilité de configurer finement ces menus.
    Menus créés à l’initialisation du site
    Par défaut trois menus sont créés automatiquement à l’initialisation du site : Le menu principal ; Identifiant : barrenav ; Ce menu s’insère en général en haut de la page après le bloc d’entête, son identifiant le rend compatible avec les squelettes basés sur Zpip ; (...)

  • Gestion de la ferme

    2 mars 2010, par

    La ferme est gérée dans son ensemble par des "super admins".
    Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
    Dans un premier temps il utilise le plugin "Gestion de mutualisation"

Sur d’autres sites (8938)

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