Recherche avancée

Médias (2)

Mot : - Tags -/documentation

Autres articles (107)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • Ajout d’utilisateurs manuellement par un administrateur

    12 avril 2011, par

    L’administrateur d’un canal peut à tout moment ajouter un ou plusieurs autres utilisateurs depuis l’espace de configuration du site en choisissant le sous-menu "Gestion des utilisateurs".
    Sur cette page il est possible de :
    1. décider de l’inscription des utilisateurs via deux options : Accepter l’inscription de visiteurs du site public Refuser l’inscription des visiteurs
    2. d’ajouter ou modifier/supprimer un utilisateur
    Dans le second formulaire présent un administrateur peut ajouter, (...)

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

  • Runtime.getRuntime().exec() is not running the ffmpeg command on centos

    23 décembre 2013, par Karn_way

    I am doing as below on centos machine

    String fileName = "ffmpeg -i file:///home/xyz %d.png";
    Runtime.getRuntime().exec(fileName);

    xyz is mp4 file and i want that to create number of different Image frames

    when i am running by java application as above it is not working however if i try to do so directly on terminal it is working, please suggest as what might be wrong ?

  • Runtime.getRuntime().exec() is not running the ffmpeg command on centos

    19 juin 2018, par Karn_way

    I am doing as below on centos machine

    String fileName = "ffmpeg -i file:///home/xyz %d.png";
    Runtime.getRuntime().exec(fileName);

    xyz is mp4 file and i want that to create number of different Image frames

    when i am running by java application as above it is not working however if i try to do so directly on terminal it is working, please suggest as what might be wrong ?

  • list txt file of ffmpeg concat demuxer

    6 septembre 2018, par Sinan Güler

    I wanted to concat 10 files of mp4 of the same format/size/bitrate....
    I had my files and the txt file under the same directory :

    Macbook Pro>Macintosh HD>Users>my username>downloads
    The txt file I created looks like this :
    https://i.imgur.com/LP7HgSS.jpg
    I entered the following command in terminal :

    ffmpeg -f concat -i mylist.txt -c copy output
    but always got the same result : no such directory
    Maybe somebody could help point out my mistakes, appreciated !