Recherche avancée

Médias (91)

Autres articles (39)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

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

  • avfilter/avf_showspectrum : add magma color map

    15 septembre 2018, par Paul B Mahol
    avfilter/avf_showspectrum : add magma color map
    
    • [DH] doc/filters.texi
    • [DH] libavfilter/avf_showspectrum.c
  • avfilter/vf_scale : add in/out color range option

    20 juillet 2013, par Michael Niedermayer
    avfilter/vf_scale : add in/out color range option
    

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavfilter/version.h
    • [DH] libavfilter/vf_scale.c
  • Custom text and background color in subtitles FFMPEG | Converting HEX to AARRGGBB

    3 octobre 2023, par Youssef

    I have this code that was working fine with text color only but when I added the background using outline to draw box around subtitles it started outputing weird colors, for example using black #000 I got red

    &#xA;

     var alpha = 1.0;&#xA;&#xA;  const textColorHex = "#000000";&#xA;  const textColor = `&amp;H${tinycolor(textColorHex).setAlpha(alpha).toHex8().substr(2)}`;&#xA;  // textColor : &amp;H0000ff&#xA;&#xA;  const bgColorHex = &#x27;#ffffff&#x27;;&#xA;  const bgColor = `&amp;H${tinycolor(bgColorHex).setAlpha(alpha).toHex8().substr(2)}`;&#xA;  // bgColor : &amp;Hffffff&#xA;&#xA;&#xA;  const ffmpeg = spawn("ffmpeg", [&#xA;    "-i",&#xA;    "test.mp4",&#xA;    "-vf",&#xA;    `subtitles=${subtitlePath}:force_style=&#x27;Alignment=${alignment},OutlineColour=${bgColor},BorderStyle=3,PrimaryColour=${textColor},Fontsize=${fontSize}&#x27;`,&#xA;    "-c:a",&#xA;    "copy",&#xA;    "-progress", "pipe:1",&#xA;    outputPath,&#xA;  ]);&#xA;

    &#xA;

    I am not sure how to fix that

    &#xA;