Recherche avancée

Médias (1)

Mot : - Tags -/belgique

Autres articles (53)

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

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

Sur d’autres sites (7687)

  • Relative Path for React-Native-ffmpeg ?

    27 juillet 2023, par christen03

    I'm using react-native-ffmpeg and I'm trying to add some text and an image to my videos. I'm trying to get use a font file through a relative path, but I'm having some issues. Everything is executing correctly, but my video is saved using some default font instead of the font I want it to use.

    


    This is the code I'm trying, these two lines to set the fontDirectory/path,

    


        await FFmpegKitConfig.setFontDirectory("../fonts");
    const fontFilePath = "../fonts/Montserrat-Medium.ttf";



    


    then the command that I execute.
-y -i ${inputFilePath} -i ${randomImage} -filter_complex "[0:v][1:v] overlay=${imgWidthScale * windowWidth}:${imgHeightScale * windowHeight}, drawtext=fontfile=${fontFilePath}:text=@${selfUser.username}:fontsize=${fontSize}:fontcolor=white:x=${textWidthScale * windowWidth}:y=${textHeightScale * windowHeight}" -codec:a copy ${outputPath}

    


    I'm sure my font file is insde the fonts directory and that this path is correct. However, this is the error I'm getting in my terminal :

    


    [AVFilterGraph @ 0x2877c2fa0] Error initializing filter 'drawtext'
 LOG  [AVFilterGraph @ 0x2877c2fa0]  with args 'fontfile=../fonts/Montserrat-Medium.ttf:text=@chris:fontsize=36:fontcolor=white...


    


    Which I'm not too sure about, but looks like the colon delimiter is not working ? However it seems to be reading all my other arguments fine as my text, fontsize, color, and position work with no issues.

    


    Is there something I'm doing wrong in my command ? Or setting up my font directory ? Or does ffmpeg not work with relative paths ? I appreciate any help :)

    


  • Install ffmpeg on elastic beanstalk using ebextensions config

    18 mai 2017, par user3581244

    I’m attempting to install an up to date version of ffmpeg on an elastic beanstalk instance on amazon servers. I’ve created my config file and added these container_commands :

       container_commands:
           01-ffmpeg:
               command: wget -O/usr/local/bin/ffmpeg http://ffmpeg.gusari.org/static/64bit/ffmpeg.static.64bit.2014-03-05.tar.gz
               leader_only: false
           02-ffmpeg:
               command: tar -xzf /usr/local/bin/ffmpeg
               leader_only: false
           03-ffmpeg:
               command: ln -s /usr/local/bin/ffmpeg /usr/bin/ffmpeg
               leader_only: false

    Command 01 and 03 seems to work perfectly but 02 doesn’t seem to work so ffmpeg doesn’t unzip. Any ideas what the issue might be ?

    Thanks,
    Helen

  • Install ffmpeg on elastic beanstalk using ebextensions config

    27 mai 2023, par user3581244

    I'm attempting to install an up to date version of ffmpeg on an elastic beanstalk instance on amazon servers. I've created my config file and added these container_commands :

    



        container_commands:
        01-ffmpeg:
            command: wget -O/usr/local/bin/ffmpeg http://ffmpeg.gusari.org/static/64bit/ffmpeg.static.64bit.2014-03-05.tar.gz
            leader_only: false
        02-ffmpeg:
            command: tar -xzf /usr/local/bin/ffmpeg
            leader_only: false
        03-ffmpeg:
            command: ln -s /usr/local/bin/ffmpeg /usr/bin/ffmpeg
            leader_only: false


    



    Command 01 and 03 seems to work perfectly but 02 doesn't seem to work so ffmpeg doesn't unzip. Any ideas what the issue might be ?

    



    Thanks,
Helen