Recherche avancée

Médias (0)

Mot : - Tags -/alertes

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

Autres articles (42)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

Sur d’autres sites (4071)

  • Added limitMultiFileUploads option.

    17 août 2011, par Sebastian Tschan

    m example/index.html m jquery.fileupload.js m tests/index.html m tests/tests.js Added limitMultiFileUploads option. Added tests for limitMultiFileUploads and limitConcurrentUploads options. Updated jQuery + jQuery UI versions.

  • avfilter/delogo : Fix show option when band is small

    28 septembre 2015, par Jean Delvare
    avfilter/delogo : Fix show option when band is small
    

    The code assumed that the outermost interpolated pixels were always in
    the fuzzy area defined by the band option. However if the band value
    is small, there may be no fuzzy area on a given plane. In that case,
    option show did not work, no rectangle was drawn (or only on the luma
    plane, depending on the band value and chroma plane subsampling
    factors.)

    Fix the problem by not making any assumption on where the outermost
    interpolated pixels will be.

    The new code was verified to produce the same result as the original
    code when the band value is not small.

    Signed-off-by : Jean Delvare <jdelvare@suse.de>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavfilter/vf_delogo.c
  • ffmpeg -r option

    11 juin 2012, par James W

    I am trying to use ffmpeg (under linux) to add a small title to a video. So, I use :

    ffmpeg -i hk.avi -r 30000/1001 -metadata title="SOF" hk_titled.avi

    The addition of title seems to work, but, the problem is the output file is about a 1/3rd of the file size of the input file and I was wondering why this is ? Is this at the expense of quality of the video ? I am unsure.. How do I preserve the same quality/size as the input file ?

    The main point I am unable to figure out is the use of -r option. Going through the ffmpeg docs, it seems to suggest that -r is frames per second (The input video is 23.9fps). At the moment, (30000/1001) works out to 29 fps, but I was unsure if I should be using this value.

    Thanks for your time.