Recherche avancée

Médias (1)

Mot : - Tags -/getid3

Autres articles (97)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

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

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

Sur d’autres sites (11567)

  • lavu : add av_gettime_relative()

    12 mai 2014, par Olivier Langlois
    lavu : add av_gettime_relative()
    

    These functions are using the POSIX clock_gettime() function with the
    CLOCK_MONOTONIC clock id. If these are not present on the targeted
    platform, the new functions will fallback on using the original realtime functions
    av_gettime() and av_usleep().

    Monotonic support can be added on other platforms with their
    equivalent native system API eventually if possible.

    Whenever time is requested to measure relative time, the monotonic clock,
    when available, is superior to the system realtime clock because it is
    not affected by discontinuous jumps in the system time

    In a future step, offering the flexibility to let the user choose between
    rt and monotonic clock for avdevices packets will be investigated.

    It is very easy to experience the issues that this patch attempt to address
    by rewinding back in the past the system time while ffmpeg is running.

    this is breaking the ffmpeg report printing (ffmepg.c:print_report()) and
    the the rate emulator functionality (-re) without the patch.

    Signed-off-by : Olivier Langlois <olivier@trillion01.com>
    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] doc/APIchanges
    • [DH] libavutil/time.c
    • [DH] libavutil/time.h
    • [DH] libavutil/version.h
  • FFMPEG read audio convenience function

    7 mars 2016, par Phlox Midas

    In Matlab, there’s a function called audioread that takes a file name as input and returns a vector of samples and the sample rate like this :

    [samples, sampleRate] = audioread(fileName);

    I’ve been programming FFMPEG but finding it very low level. I have a file being read using a technique similiar to this. Is there any such equivalent C function in FFMPEG as there is in Matlab so I don’t have to fiddle with the low level stuff ? Or any library that can provide a nice API like this for FFMPEG (though I would just prefer this one function) ?

  • External Subtitle Support for FFMPEG

    16 mars 2016, par 123rgt

    Does FFMPEG support external subtitles ?

    In libvlc they have libvlc_video_set_subtitle_file. Does some thing equivalent exist in FFMPEG or can we implement the same using FFMPEG ?

    I need a solution using FFMPEG APIs, not the command line.