Recherche avancée

Médias (1)

Mot : - Tags -/iphone

Autres articles (103)

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

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

  • avcodec/apedec : fix undefined left shifts of negative numbers

    20 septembre 2015, par Ganesh Ajjanagadde
    avcodec/apedec : fix undefined left shifts of negative numbers
    

    This fixes -Wshift-negative-value reported with clang 3.7+, e.g
    http://fate.ffmpeg.org/log.cgi?time=20150919172459&log=compile&slot=x86_64-darwin-clang-polly-notiling-3.7.
    Note that the patch crucially depends on int >= 32 bits,
    an assumption made in many places in the codebase.

    Signed-off-by : Ganesh Ajjanagadde <gajjanagadde@gmail.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/apedec.c
  • ffmpeg : `select` filter output frame numbers are off

    28 juin 2020, par kindoflike

    I want to extract certain frames from video, but using this command

    &#xA;

    ffmpeg -i "video-a.mkv" -vf select="eq(n\,100)" -vsync 0 -frame_pts true "a_%06d.jpg"&#xA;ffmpeg -i "video-b.mkv" -vf select="eq(n\,100)" -vsync 0 -frame_pts true "b_%06d.jpg"&#xA;

    &#xA;

    it seems I'm getting inconsistent results. for different videos I get differently named files :

    &#xA;

    a_000103.jpg&#xA;b_000101.jpg&#xA;

    &#xA;

    why is that ?

    &#xA;

  • decklink : support all valid numbers of audio channels

    20 décembre 2015, par Matthias Hunstock
    decklink : support all valid numbers of audio channels
    

    As it is already written in the documentation, BMD DeckLink cards
    are capable of capturing 2, 8 or 16 audio channels (for SDI Inputs).
    Currently the value is hardcoded to 2. Introduces new option.

    Reviewed-by : Deti Fliegl <deti@fliegl.de>
    Signed-off-by : Matthias Hunstock <atze@fem.tu-ilmenau.de>
    Signed-off-by : Marton Balint <cus@passwd.hu>

    • [DH] doc/indevs.texi
    • [DH] libavdevice/decklink_common_c.h
    • [DH] libavdevice/decklink_dec.cpp
    • [DH] libavdevice/decklink_dec_c.c