Recherche avancée

Médias (0)

Mot : - Tags -/content

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

Autres articles (79)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

  • De l’upload à la vidéo finale [version standalone]

    31 janvier 2010, par

    Le chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
    Upload et récupération d’informations de la vidéo source
    Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
    Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)

Sur d’autres sites (8375)

  • Revision 9d88b30854 : Remove redundant vp9_zero in choose_partitioning It makes the overall speed -6

    5 décembre 2014, par Jingning Han

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



    Remove redundant vp9_zero in choose_partitioning

    It makes the overall speed -6 about 2% faster with no compression
    performance change.

    Change-Id : I680a967b421caa2c5a5cdb821311c4726a2df45a

  • are there options to speed up dpkg-buildpackage

    17 janvier 2015, par j0h

    Im back porting ffmpeg to an older version of debian.
    everything is going well, but its so slow.
    I am running dpkg-buildpackage -us -uc

    with a debian rules file that looks like this :

    #!/usr/bin/make -f
    %:
       dh $@

    override_dh_auto_configure:
       ./configure

    I notice, this is only processing on 1 core.
    is there anything like make -j 4 that I could use to speed this up ?

    I’ve been using this guide, but i don’t see anything for speeding up the build step
    https://www.debian.org/doc/manuals/maint-guide/

  • How to increase the speed of the FFMPEG output to S3 bucket

    21 novembre 2020, par kmrinmoy07

    I am using ffmpeg to convert audio into different qualities using ffmpeg and then store the output into S3 bucket. But i saw that the rate of completion of the work is very slow as compared to completion of work into local storage directory in my server.

    


    Here is my Ffmpeg command -

    


        ffmpeg -i input.mp3 -ab 96k -f mp3 pipe:1 | aws s3 cp - s3://mybucket/output.mp3


    


    Can you please help me to increase the speed of the completion of work.