Recherche avancée

Médias (1)

Mot : - Tags -/biographie

Autres articles (49)

  • MediaSPIP Player : les contrôles

    26 mai 2010, par

    Les contrôles à la souris du lecteur
    En plus des actions au click sur les boutons visibles de l’interface du lecteur, il est également possible d’effectuer d’autres actions grâce à la souris : Click : en cliquant sur la vidéo ou sur le logo du son, celui ci se mettra en lecture ou en pause en fonction de son état actuel ; Molette (roulement) : en plaçant la souris sur l’espace utilisé par le média (hover), la molette de la souris n’exerce plus l’effet habituel de scroll de la page, mais diminue ou (...)

  • Automated installation script of MediaSPIP

    25 avril 2011, par

    To overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
    You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
    The documentation of the use of this installation script is available here.
    The code of this (...)

  • La sauvegarde automatique de canaux SPIP

    1er avril 2010, par

    Dans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
    Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...)

Sur d’autres sites (6863)

  • AAC encoder : simplify and speed up find_min_book

    21 septembre 2015, par Claudio Freire
    AAC encoder : simplify and speed up find_min_book
    

    Trivial change to simplify the small but hot
    find_min_book function. The new form is easier to
    understand and faster.

    • [DH] libavcodec/aacenc_utils.h
    • [DH] libavcodec/aacenctab.h
    • [DH] libavcodec/mips/aaccoder_mips.c
  • aviflter/vf_waveform : speed up non-color filters

    10 novembre 2015, par Paul B Mahol
    aviflter/vf_waveform : speed up non-color filters
    

    Remove loops, output is also more interesting.

    Signed-off-by : Paul B Mahol <onemda@gmail.com>

    • [DH] libavfilter/vf_waveform.c
  • FFMPEG improve MP4 encoding speed [on hold]

    17 septembre 2015, par Kim T

    My input files are MP4, which are combined with an overlay to one MP4 video file. How can I improve the speed of these FFMPEG commands ?

    ./ffmpeg -y -i intro.mp4 -f mpegts 0.ts
    ./ffmpeg -y -i record.mp4 -i overlay.png -filter_complex "[0:v][1:v] overlay=0:0" -ac 2 -f mpegts 1.ts
    ./ffmpeg -y -i outro.mp4 -f mpegts 2.ts
    ./ffmpeg -y -i "concat:0.ts|1.ts|2.ts" -vcodec libx264 -preset ultrafast -strict -2 output.mp4

    Commands that improved speed :

    • upgrading ffmpeg to version 2.42 with neon support for my device
    • -f mpegts = converts videos to transport streams which process faster
    • -preset ultrafast = tells encoder to use fastest encoding preset
    • -ss before -i = seeks straight to start point without processing frames

    Commands where I saw no speed improvement :

    • -c copy = copies the stream, but this doesn’t seem to work on overlay filters and concats :(
    • -threads 2 = tells FFMPEG to use more threads, but don’t noticed an improvement over the default