Recherche avancée

Médias (3)

Mot : - Tags -/plugin

Autres articles (112)

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

  • Que fait exactement ce script ?

    18 janvier 2011, par

    Ce script est écrit en bash. Il est donc facilement utilisable sur n’importe quel serveur.
    Il n’est compatible qu’avec une liste de distributions précises (voir Liste des distributions compatibles).
    Installation de dépendances de MediaSPIP
    Son rôle principal est d’installer l’ensemble des dépendances logicielles nécessaires coté serveur à savoir :
    Les outils de base pour pouvoir installer le reste des dépendances Les outils de développements : build-essential (via APT depuis les dépôts officiels) ; (...)

  • Automated installation script of MediaSPIP

    25 avril 2011, par

    To overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
    You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
    The documentation of the use of this installation script is available here.
    The code of this (...)

Sur d’autres sites (9609)

  • "ffmpeg.dll was not found" on Windows Electron apps exported on macOS

    13 février 2024, par beachweak

    I'm a beginner dev and I'm using electron-builder to export my Electron app. I'm exporting the app on an Apple Silicon Mac (M2). Every time without fail, once exported to Windows, an error message saying "The code execution cannot proceed because ffmpeg.dll was not found." will pop up.

    


    I've tried a variety of methods to fix this ; I tried installing various versions of ffmpeg (ffmpeg-static, ffmpeg-static-electron, ffmpeg) to my project incase it was missing and I even tried to include ffmpeg in the extraResources details within package.json.

    


    Originally, the error would pop up and the app wouldn't run. After I installed ffmpeg to the project, the error still pops up but the app runs. It would be ideal to remove the error entirely.

    


    Here's my current settings for build :

    


      "build": {
    "appId": "com.github.beachweak.xcr",
    "productName": "XCR",
    "compression": "store",
    "win": {
      "target": [
        {
          "target": "portable",
          "arch": [
            "x64",
            "arm64"
          ]
        }
      ]
    },
    "mac": {
      "target": [
        {
          "target": "dmg",
          "arch": [
            "x64",
            "arm64"
          ]
        }
      ]
    },
    "extraResources": [
      {
        "from": "node_modules/ffmpeg-static/",
        "to": "ffmpeg-static"
      }
    ]
  }


    


    If anyone has a solution for this I would be eternally grateful.

    


  • Piwik analytics database : migrating from MySQL to MariaDB

    11 novembre 2015, par Piwik Core Team — Meta

    This short blog post is an announcement regarding the Piwik technology stack.

    Piwik compatible with MySQL and MariaDB

    Since our first public release Piwik uses the open source database server MySQL to store the analytics data.

    Piwik is also compatible with MariaDB. MariaDB is an enhanced, drop-in replacement for MySQL.

    Upgrading to MariaDB

    Many users from our community as well as Piwik PRO have confirmed that using MariaDB for Piwik has several advantages. MariaDB has in some cases significantly improved query performance and reliability of Piwik. Because MariaDB 5.5 is a complete drop-in-replacement for MySQL 5.5, upgrading can be as easy as running apt-get install mariadb-server (or equivalent for your platform). Existing third party techologies such as TokuDB (FAQ) and Galera are fully compatible with MariaDB.

    Learn more about upgrading to MariaDB : Upgrading from MySQL to MariaDB

    In the future, Piwik will stay compatible with both MySQL and MariaDB.

  • please check encoding it is fastest or not

    11 mars 2020, par Don Rigs

    i have a 2 line to convert from mp4 to avi
    `avs2avi a.avs target.avi -c xvid

    ffmpeg -i source.wav -i target.avi -c:a mp3 -c:v copy targetfinal.avi`

    here it is the a.avs :
    `LoadPlugin("C :\MEGUI\tools\ffms\ffms2.dll")
    FFVideoSource("source.mp4", threads=1)
    LoadPlugin("C :\AVISYNTH\plugins\zoom.dll")
    Levels(0, 1.0, 250, 10, 255)
    trim(20,960)
    crop(4,4,-4,-4)
    BilinearResize(1920,1080)

    AssumeScaledFPS(80,63).ChangeFPS(last)`

    it seem not fast enough, can you have any advice to make it more faster ?