Recherche avancée

Médias (0)

Mot : - Tags -/api

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

Autres articles (77)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

Sur d’autres sites (6720)

  • Video to image sequence export (preserving color range)

    20 août 2017, par Floating Point

    When I convert the material which is in legal range (tv) to prores, legal range is preserved, but when I export it to image sequence (tiff), I get files which are already in full range, although I try to preserver the original values with -vf "zscale=rin=limited:r=limited".

    Is ffmpeg automatically changes color range when exporting to images ?

  • FFMPEG detect color bars and tone in video

    23 novembre 2016, par Chris Harvey

    I am trying to detect if a video has any valid content or is just the standard broadcasting bars & tone. So far I’ve looked at this question : http://superuser.com/questions/1036449/detect-color-bars-ffmpeg/1036478#1036478
    which generates bars & tone from the first frame and then compares that against the rest of the stream but in my case I need to run the ffmpeg command within a folder that only has one file that has already been found by my python script.

    Is it possible to use ffmpeg’s blend=difference to check that a short bars & tone clip is a subclip of one of my video files ? I’m thinking of this in the same way you can check if a string is within a string, or is there a better way to check for bars that I’m not thinking of ?

    Thanks !

  • 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

    


     var alpha = 1.0;

  const textColorHex = "#000000";
  const textColor = `&H${tinycolor(textColorHex).setAlpha(alpha).toHex8().substr(2)}`;
  // textColor : &H0000ff

  const bgColorHex = '#ffffff';
  const bgColor = `&H${tinycolor(bgColorHex).setAlpha(alpha).toHex8().substr(2)}`;
  // bgColor : &Hffffff


  const ffmpeg = spawn("ffmpeg", [
    "-i",
    "test.mp4",
    "-vf",
    `subtitles=${subtitlePath}:force_style='Alignment=${alignment},OutlineColour=${bgColor},BorderStyle=3,PrimaryColour=${textColor},Fontsize=${fontSize}'`,
    "-c:a",
    "copy",
    "-progress", "pipe:1",
    outputPath,
  ]);


    


    I am not sure how to fix that