Recherche avancée

Médias (0)

Mot : - Tags -/alertes

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

Autres articles (56)

  • Encodage et transformation en formats lisibles sur Internet

    10 avril 2011

    MediaSPIP transforme et ré-encode les documents mis en ligne afin de les rendre lisibles sur Internet et automatiquement utilisables sans intervention du créateur de contenu.
    Les vidéos sont automatiquement encodées dans les formats supportés par HTML5 : MP4, Ogv et WebM. La version "MP4" est également utilisée pour le lecteur flash de secours nécessaire aux anciens navigateurs.
    Les documents audios sont également ré-encodés dans les deux formats utilisables par HTML5 :MP3 et Ogg. La version "MP3" (...)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

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

Sur d’autres sites (11675)

  • 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;