Recherche avancée

Médias (3)

Mot : - Tags -/collection

Autres articles (112)

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

  • Gestion de la ferme

    2 mars 2010, par

    La ferme est gérée dans son ensemble par des "super admins".
    Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
    Dans un premier temps il utilise le plugin "Gestion de mutualisation"

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

Sur d’autres sites (11473)

  • Revision 0ca7855f67 : Use correct bit cost while static-thresh is on While static-thresh is on, we on

    31 août 2013, par Yunqing Wang

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



    Use correct bit cost while static-thresh is on

    While static-thresh is on, we only need to transmit skip
    flag if skip = 1. The cost of skip bit is added to the
    total rate cost.

    Change-Id : I64e73e482bc297eba22907026298a15fa8cc3920

  • lavc/aacenc_utils : replace powf(x,y) by expf(logf(x), y)

    8 mars 2016, par Ganesh Ajjanagadde
    lavc/aacenc_utils : replace powf(x,y) by expf(logf(x), y)
    

    This is 2x faster for y not an integer on Haswell+GCC, and should
    generally be faster due to the fact that anyway powf essentially does
    this under the hood. Made an inline function in lavu/internal.h for this
    purpose.

    Note that there are some accuracy differences, that should generally be
    negligible. In particular, FATE still passes on this platform.

    Results in 7% speedup in aac encoding with -march=native, Haswell+GCC.
    before :
    ffmpeg -i sin.flac -acodec aac -y sin_new.aac 6.05s user 0.06s system 104% cpu 5.821 total

    after :
    ffmpeg -i sin.flac -acodec aac -y sin_new.aac 5.67s user 0.03s system 105% cpu 5.416 total

    This is also faster than an alternative approach that pulls in powf, gets rid of
    the crufty NaN checks and other special cases, exploits knowledge about the intervals, etc.
    This of course does not exclude smarter approaches ; just suggests that
    there would need to be significant work on this front of lower utility than
    searches for hotspots elsewhere.

    Reviewed-by : Reimar Döffinger <Reimar.Doeffinger@gmx.de>
    Reviewed-by : Ronald S. Bultje <rsbultje@gmail.com>
    Signed-off-by : Ganesh Ajjanagadde <gajjanag@gmail.com>

    • [DH] libavcodec/aacenc_utils.h
    • [DH] libavutil/internal.h
  • ffmpeg - concatenate files while space constrained

    23 juillet 2023, par glodomorrapl

    Let's say i have a 2 TB drive. If i want to use ffmpeg to concatenate two files, they cannot be larger than 1 TB in total, otherwise I won't have enough storage space to save the output file.

    &#xA;

    Is it possible for ffmpeg (or, perhaps, another tool) to losslessly concatenate two videos while also removing parts of the source files on the fly, allowing me to concatenate larger files ? The files in questions will be encoded with the ffv1 codec and saved as mkv, although I'm fine with trying different containers.

    &#xA;

    Would saving files in smaller chunks to begin with be the only solution ?

    &#xA;