Recherche avancée

Médias (91)

Autres articles (34)

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

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

Sur d’autres sites (10719)

  • Merge pull request #3440 from georgemillo/patch-1

    1er mai 2016, par blueimp
    Merge pull request #3440 from georgemillo/patch-1
    

    grammar fix

  • Revision cdc954fdc8 : skip the un-necessary motion search in the first pass This patch allows the VP9

    16 juin 2014, par Pengchong Jin

    Changed Paths :
     Modify /vp9/encoder/vp9_firstpass.c



    skip the un-necessary motion search in the first pass

    This patch allows the VP9 encoder to skip the un-necessary
    motion search in the first pass. It computes the motion error
    of 0,0 motion using the last source frame as the reference,
    and skips the further motion search if this error is small.

    Borg test shows overall the patch gives PSNR gain (derf -0.001%,
    yt 0.341%, hd 0.282%). Individual clips may have PSNR gain or
    loss. The best PSNR performance is 7.347% and the worst is -0.662%.
    The first pass encoding speedup for slideshow clips is over 30%.

    Change-Id : I4cac4dbd911f277ee858e161f3ca652c771344fe

  • Unable to execute command prompt command from python

    30 octobre 2023, par StudentProgrammer

    Unable to execute a ffmpeg command directly from python, however it works fine if used within the command prompt.

    


     os.system("cmd /c ffmpeg -i video.mp4 -i sound.mp3 -c:v copy -filter_complex '[1:a] adelay=3000|2000 [delayed]; [0:a] [delayed] amix [out]' -map 0:v -map '[out]' video2.mp4")



 '2000' is not recognized as an internal or external command,
 operable program or batch file.


    


    I know it has something to do with the pipe |. I've looked at documentation to make subprocess work with pipes but without success.