Recherche avancée

Médias (91)

Autres articles (22)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

  • Changer son thème graphique

    22 février 2011, par

    Le thème graphique ne touche pas à la disposition à proprement dite des éléments dans la page. Il ne fait que modifier l’apparence des éléments.
    Le placement peut être modifié effectivement, mais cette modification n’est que visuelle et non pas au niveau de la représentation sémantique de la page.
    Modifier le thème graphique utilisé
    Pour modifier le thème graphique utilisé, il est nécessaire que le plugin zen-garden soit activé sur le site.
    Il suffit ensuite de se rendre dans l’espace de configuration du (...)

Sur d’autres sites (5995)

  • libavutil\common.h the following files have unsaved change ? change permission

    3 septembre 2015, par user3717658

    i have just downloaded QtMEL and i try to compile the source code in Qtcreator with visual c++ 11 compiler but i get 2 error

    1 : libavutil\common.h the following files have unsaved change (from QtCreator)
    2 : error : C1083 : Cannot open include file : ’libavutil/avconfig.h’ : No such file or directory (from Compiler)

    the avconfig.h file does not exit maybe duo to change in ffmpeg is there any replacement ?

  • lavc : Make AVPacket.duration int64, and deprecate convergence_duration

    26 septembre 2015, par wm4
    lavc : Make AVPacket.duration int64, and deprecate convergence_duration
    

    Note that convergence_duration had another meaning, one which was in
    practice never used. The only real use for it was a 64 bit replacement
    for the duration field. It’s better just to make duration 64 bits, and
    to get rid of it.

    Signed-off-by : Vittorio Giovara <vittorio.giovara@gmail.com>

    • [DBH] doc/APIchanges
    • [DBH] libavcodec/audio_frame_queue.c
    • [DBH] libavcodec/audio_frame_queue.h
    • [DBH] libavcodec/avcodec.h
    • [DBH] libavcodec/avpacket.c
    • [DBH] libavcodec/parser.c
    • [DBH] libavcodec/version.h
    • [DBH] libavformat/framecrcenc.c
    • [DBH] libavformat/matroskadec.c
    • [DBH] libavformat/matroskaenc.c
    • [DBH] libavformat/md5enc.c
    • [DBH] libavformat/mov.c
    • [DBH] libavformat/r3d.c
    • [DBH] libavformat/utils.c
  • How to parse ffmpeg progress real time in ruby

    7 octobre 2015, par jryancanty

    So I was struggling with this problem a long time last night and finally figured it out so I wanted to post here in case someone ran across the same issue.

    The goal is to parse the output of FFmpeg so that it would run in a Sidekiq worker and save progress and duration to an ActiveRecord model so I could get a progress bar in the UI by polling the database.

    How do I parse ffmpeg duration and time real-time without waiting for the process to finish ?