Recherche avancée

Médias (2)

Mot : - Tags -/documentation

Autres articles (52)

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

  • Other interesting software

    13 avril 2011, par

    We don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
    The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
    We don’t know them, we didn’t try them, but you can take a peek.
    Videopress
    Website : http://videopress.com/
    License : GNU/GPL v2
    Source code : (...)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

Sur d’autres sites (5894)

  • Revision 29e1b1a4b0 : tests : add API_REGISTER_STATE_CHECK used to wrap API functions to ensure full e

    10 juillet 2014, par James Zern

    Changed Paths :
     Modify /test/convolve_test.cc


     Modify /test/dct16x16_test.cc


     Modify /test/dct32x32_test.cc


     Modify /test/decode_test_driver.cc


     Modify /test/encode_test_driver.cc


     Modify /test/fdct4x4_test.cc


     Modify /test/fdct8x8_test.cc


     Modify /test/idct_test.cc


     Modify /test/intrapred_test.cc


     Modify /test/partial_idct_test.cc


     Modify /test/pp_filter_test.cc


     Modify /test/register_state_check.h


     Modify /test/sad_test.cc


     Modify /test/sixtap_predict_test.cc


     Modify /test/subtract_test.cc


     Modify /test/variance_test.cc



    tests : add API_REGISTER_STATE_CHECK

    used to wrap API functions to ensure full environment consistency as
    opposed to the renamed ASM_REGISTER_STATE_CHECK which is used with
    assembly functions.
    currently checks the FPU tag word in x86/x86_64 gcc builds to ensure
    emms has been called.

    Change-Id : Ie241772dbf903d33d516a1add4c8c6783f2e1490

  • Merge commit ’0670acc4f1c4ceb16968818a654e07a3f550a8c9’

    12 mai 2015, par Michael Niedermayer
    Merge commit ’0670acc4f1c4ceb16968818a654e07a3f550a8c9’
    

    * commit ’0670acc4f1c4ceb16968818a654e07a3f550a8c9’ :
    dca_parser : Extend DTS core sync word and fix existing check

    Conflicts :
    libavcodec/dca_parser.c

    See : e80b2b9c81716a5d9f559c04cfe69d76b04e4cd3
    Merged-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavcodec/dca_parser.c
  • How to (visually) losslessly compress a video with GPU acceleration in ffmpeg ?

    4 juin 2022, par Tizian Heckmann

    I am trying to compress a video in ffmpeg with GPU acceleration, but the result always looks bad. This is what I have tried and none of this has worked for me :

    &#xA;

    Preset 18 is called "best quality" when looking at ffmpeg -h encoder=hevc_nvenc
    &#xA;ffmpeg -i input.mp4 -c:v hevc_nvenc -preset 18 compressed.mp4

    &#xA;

    Also :
    &#xA;ffmpeg -i input.mp4 -c:v h264_nvenc -preset 18 compressed.mp4

    &#xA;

    Unfortunately, the preset lossless is deprecated. When trying
    &#xA;ffmpeg -i input.mp4 -c:v h264_nvenc -preset lossless compressed.mp4
    &#xA;the output file just grows enormous.

    &#xA;

    Any help is appreciated.
    &#xA;Edit : Since my question is being received as inappropriate by the community, I would like to know why. This was my first question, any advice on how to word it better or tell me why it just does not fit here would be appreciated. Thank you.

    &#xA;