Recherche avancée

Médias (1)

Mot : - Tags -/belgique

Autres articles (44)

  • Demande de création d’un canal

    12 mars 2010, par

    En fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
    Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...)

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

Sur d’autres sites (5685)

  • ffmpeg not working in other directory same encoder

    14 mars 2018, par Moein Hosseini

    I’m using a script to convert mp3 file to ogg file by libopus codec.

    when I use it in my home directory it works using this command :

    ffmpeg -i music.mp3 -c libopus out.ogg

    but when I’m in this directory :

    /home/moein/Desktop/BeatkhorBot/music

    the command does not work and gives me this error :

    Invalid encoder type 'libopus'

    does anyone know how to fix this ?

  • ffmpeg not working in other directory using a encoder

    14 mars 2018, par Moein Hosseini

    I’m using a script to convert mp3 file to ogg file by libopus codec.

    when I use it in my home directory it works using this command :

    ffmpeg -i music.mp3 -c libopus out.ogg

    but when I’m in this directory :

    /home/moein/Desktop/BeatkhorBot/music

    the command does not work and gives me this error :

    Invalid encoder type 'libopus'

    does anyone know how to fix this ?

  • How do I get ffmpeg to work on my website ?

    20 septembre 2023, par Sam Cordin

    ffmpeg works on my local computer when I provide the absolute path for it or make it work globally by editing the environment variables.

    


    But on my website it doesn't work at all. I uploaded ffmpeg.exe, ffplay.exe, and ffprobe.exe to public_html/

    


    Here is my code :

    


    <?php
  ini_set ('display_errors', 1);
  ini_set ('display_startup_errors', 1);
  error_reporting (E_ALL);
  $image1 = "/home/mywebsitename/public_html/uploads2/1.png";
  $image2 = "/home/mywebsitename/public_html/uploads2/2.png";
  $ffmpeg = "/home/mywebsitename/public_html/ffmpeg";
  $command = $ffmpeg." -i ".$image1." -vf scale=100:-2 ".$image2;
  system($command);
?>


    


    It's supposed to make one image file mimic another, while having some differences in size and quality.

    


    I enabled the system function in my php.ini file which allowed it to work, and it doesn't give me an error on that anymore.

    


    I also changed the permissions of all the files and folders involved(uploads2 folder, 1.png, 2.png, the ffmpeg programs) to 777 which allows everything from read, write and execute.

    


    However, nothing outputted, and the files stayed the same. How do I get ffmpeg to work on my website ?