Recherche avancée

Médias (5)

Mot : - Tags -/open film making

Autres articles (72)

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

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

  • La sauvegarde automatique de canaux SPIP

    1er avril 2010, par

    Dans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
    Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...)

Sur d’autres sites (4853)

  • FFMPEG not supporting emoji text

    23 décembre 2019, par walt3rwhite

    I need to add text that can contain emoji icons over an image. I need to implement this thing in JavaScript. I am thinking to use FFMPEG bash commands. However, it just displays square boxes.

    ffmpeg -i 1.png -vf "drawtext=text='
  • Is there a possibility to rotate a dynamically added text using fluent-ffmpeg ?

    6 mai 2019, par Bedrule Paul

    I’m trying to rotate a dynamically added text on a video using fluent-ffmpeg with node. I found a lot of options on their documentation regarding font size, font color, position, but nothing about text rotation. Is there any possibility to rotate only text ?

       input: 'output_part1.mp4',
       filters: [{
           filter: 'drawtext',
           options: {
               text: 'HY',
               fontfile: 'Canting_Regular_DEMO.ttf',
               x: 'main_w / 2 - text_w / 2',
               y: '475',
               fontcolor: defaultColor,
               fontsize: 142,
               enable: 'between(t, 0  , 5.75)',
               //ex: angle: '45'
           }
       }]
  • Vertically stack two images, draw a box on the bottom image then write multiline text in that box

    31 août 2020, par Sarmad S.

    I am trying to make a video from two images, where the two images should be vertically stacked. This is easy and can be done with the vstack command. I also managed to write text on the bottom image with the drawtext command. However I want to draw a blue box that covers half of the bottom image (the bottom part of the image) and write the text in that blue box.

    


    How do I go about doing so ?

    


    My code so far :

    


    ffmpeg -loop 1 -i image1 -i image2 -c:v libx264 -t 3 -pix_fmt yuv420p -filter_complex "[1]drawtext=my-font.otf: text='some multiline text': fontcolor=white: fontsize=50: x=(w-text_w)/2: y=(h-text_h)/2[v1], drawbox; [0][v1]vstack" -s 1080:1920 output.mp4"


    


    I also want to zoom slowly in the images (not the box or the text). Anyone can help me connect things ?

    


    I am able to zoom, drawbox, write text etc, but not able to combine them together.