Recherche avancée

Médias (21)

Mot : - Tags -/Nine Inch Nails

Autres articles (62)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

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

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

Sur d’autres sites (7784)

  • avcodec/aacpsy : Avoid floating point division by 0 of norm_fac

    28 mai 2021, par Michael Niedermayer
    avcodec/aacpsy : Avoid floating point division by 0 of norm_fac
    

    Fixes : Ticket7995
    Fixes : CVE-2020-20446

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/aacpsy.c
  • Does exists other way of indenting ffmpeg batch script ?

    22 mars 2021, par Toni Cambronero Garcia

    How can I indent code in a Batch script other than using temporal variables %= =% ?&#xA;This is the only code that works for me with indentation.

    &#xA;

    ::2020-12-31 10:43:40&#xA;@ECHO OFF&#xA;::SET VIDEO="E:\V&#xED;deos\test.mp4"&#xA;SET VIDEO=%1&#xA;SET /P TITULO=Introduzca el t&#xED;tulo del v&#xED;deo: &#xA;ffmpeg ^&#xA;    -y ^&#xA;    -loglevel verbose ^&#xA;    -i %VIDEO% ^&#xA;    -vf ^&#xA;          scale=^&#xA;%=          =%width=-2:^&#xA;%=          =%height=360,^&#xA;%=      =%drawtext=^&#xA;%=          =%fontfile=&#x27;C\:/Windows/Fonts/impact.ttf&#x27;:^&#xA;%=          =%text=%TITULO%:^&#xA;%=          =%fontcolor=white:^&#xA;%=          =%borderw=1:^&#xA;%=          =%fontsize=18:^&#xA;%=          =%alpha=0.99:^&#xA;%=          =%x=(w-tw)/2:^&#xA;%=          =%y=th/4:^&#xA;%=          =%expansion=none,^&#xA;%=      =%drawtext=^&#xA;%=          =%fontfile=&#x27;C\:/Windows/Fonts/arial.ttf&#x27;:^&#xA;%=          =%text=&#x27;WATERMARK&#x27;:^&#xA;%=          =%fontcolor=white:^&#xA;%=          =%borderw=1:^&#xA;%=          =%fontsize=18:^&#xA;%=          =%alpha=0.60:^&#xA;%=          =%x=w-tw-10:^&#xA;%=          =%y=h-th-10:^&#xA;%=          =%expansion=none^&#xA;    -map 0:v ^&#xA;    -map 0:a? ^&#xA;    -c:v h264 ^&#xA;    -crf 30 ^&#xA;    -c:a aac ^&#xA;    -q:a 1 ^&#xA;    -ac 1 ^&#xA;    %VIDEO:~0,-5%_WATERMARK.mp4&#xA;

    &#xA;

    If I try to use spaces or tabs in the "-vf" section ffmpeg interprets them as the end of the filter and the start of the output file argument .

    &#xA;

  • ffmpeg only drawing last text

    24 juillet 2020, par Muhammad Mohsin Ajmal

    Im using ffmpeg in flutter using the flutter ffmpeg plugin. While experimenting with it this is what I am trying to do : Show text between 1 to 2 seconds and a different text between 3 to 4 seconds in video.

    &#xA;

    Only the text mentioned between 3 to 4 seconds is shown. So for me only the last drawText would work. What am I missing here ?

    &#xA;

    The is the list of arguments generated

    &#xA;

     Running FFmpeg with arguments: [-y, -i, /storage/emulated/0/DCIM/Camera/20200707_234610.mp4, -i, /data/user/0/com.example.example/app_flutter/watermark.png, -filter_complex, [0:v][1:v]overlay=main_w-overlay_w-5:5 ,drawtext=fontfile=&#x27;/data/user/0/com.example.example/app_flutter/font.ttf&#x27;:fontsize=90:x=20:y=20:text=&#x27;Testing&#x27;:enable=&#x27;between(t\,1\,2),drawtext=fontfile=&#x27;/data/user/0/com.example.example/app_flutter/font.ttf&#x27;:fontsize=90:x=20:y=260:text=&#x27;OTHER TEXT&#x27;:enable=&#x27;between(t\,3\,4)&#x27;&#x27;, -crf, 27, -preset, veryfast, -c:v, libx264, -r, 30, /data/user/0/com.example.example/cache/2020-07-21T07:50:39.206386.mp4]&#xA;&#xA;

    &#xA;