Recherche avancée

Médias (0)

Mot : - Tags -/tags

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

Autres articles (99)

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

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • L’agrémenter visuellement

    10 avril 2011

    MediaSPIP est basé sur un système de thèmes et de squelettes. Les squelettes définissent le placement des informations dans la page, définissant un usage spécifique de la plateforme, et les thèmes l’habillage graphique général.
    Chacun peut proposer un nouveau thème graphique ou un squelette et le mettre à disposition de la communauté.

Sur d’autres sites (11751)

  • Revision 734938dc6b : Use more meaningful names for speed features Use frame_parameter_update to prec

    10 février 2014, par Jingning Han

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


     Modify /vp9/encoder/vp9_onyx_if.c


     Modify /vp9/encoder/vp9_onyx_int.h


     Modify /vp9/encoder/vp9_ratectrl.c


     Modify /vp9/encoder/vp9_rdopt.c



    Use more meaningful names for speed features

    Use frame_parameter_update to precisely describe the functionality.

    Change-Id : Ia9a55ba8efef7b987e30d949dd00ac716189bdb9

  • jpeg2000 : Speed up jpeg2000_decode_tile()

    1er juillet 2013, par Michael Niedermayer
    jpeg2000 : Speed up jpeg2000_decode_tile()
    

    Skip processing bands with dimension set to 0.

    Signed-off-by : Luca Barbato <lu_zero@gentoo.org>

    • [DBH] libavcodec/jpeg2000dec.c
  • How to speed up ffmpeg's copy ?

    30 mars 2022, par Jamie Hutber

    I am currently using ffmpegs concat with -c copy. I am getting around 3.7x on average.

    &#xA;

    $ ffmpeg -safe 0 -protocol_whitelist file,tcp,http,pipe -f concat -i - -c copy "test.mp4"&#xA;........&#xA;frame=24457 fps=237 q=-1.0 Lsize= 2983723kB time=00:06:48.02 bitrate=59905.3kbits/s speed=3.96x&#xA;........&#xA;

    &#xA;

    But the issue is, every session I have around 9x15x8min clips to merge. So if I could improve the speed of copy I would like to.

    &#xA;

    I am not sure if you can use gpu as no encoding is happening. But I should be able to assign more cores to the process ?

    &#xA;

    I have somewhere in this image stopped the ffmpeg process, but you would never know when it was. It was 9 seconds ago in the image.&#xA;enter image description here

    &#xA;

    ffmpeg -safe 0 -protocol_whitelist file,tcp,http,pipe -f concat -i - -c copy "test.mp4"

    &#xA;

    Full Command

    &#xA;

    ls -1v | grep -i mp4 | perl -ne &#x27;$_ =~ s/\n$//; print "file &#x27;"&#x27;"&#x27;$_&#x27;"&#x27;"&#x27;\n"&#x27; | ffmpeg -safe 0 -protocol_whitelist file,tcp,http,pipe -f concat -i - -c copy "test.mp4"&#xA;

    &#xA;

    with ffmpeg process running for 60+ seconds

    &#xA;

    enter image description here

    &#xA;