Recherche avancée

Médias (1)

Mot : - Tags -/ogg

Autres articles (48)

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

  • Soumettre améliorations et plugins supplémentaires

    10 avril 2011

    Si vous avez développé une nouvelle extension permettant d’ajouter une ou plusieurs fonctionnalités utiles à MediaSPIP, faites le nous savoir et son intégration dans la distribution officielle sera envisagée.
    Vous pouvez utiliser la liste de discussion de développement afin de le faire savoir ou demander de l’aide quant à la réalisation de ce plugin. MediaSPIP étant basé sur SPIP, il est également possible d’utiliser le liste de discussion SPIP-zone de SPIP pour (...)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

Sur d’autres sites (9389)

  • sending command into CMD in c#

    17 mai 2018, par ShinoLexTazy

    I wanna simple send this string into cmd command line

    string arg= "ffmpeg.exe - i " + txtInput.Text + " " + txtOutput.Text + "";

    I tried this

    Process.Start("cmd.exe", arg);

    But nothing happen, so how can I execute this command in cmd without showing the cmd to the user ?

  • FFMEG : run code after complete conversion

    26 octobre 2019, par Сергей Барахтенко

    There is a code that runs FFMPEG

    shell_exec($this->config->item('ffmpeg') . ' -i ' . $path . ' ' . $cmd . ' 1>' . $folder . '/log.txt 2>&1 ');

    And there is the following line, which should, taking into account the peculiarities of the PHP language, work out immediately after shell_exec

    $params = array(
       'status' => 'ready'
    );
    $result = $this->model->editVideo($video_key, $params);

    This line simply updates the status of the video in the database

    My question is, why doesn’t the further php code work after completion shell_exec ? What could be the catch ?

  • How can I use ffmpeg on PythonAnywhere ?

    5 mars 2016, par miguel

    I’m trying to make a web app with Flask, hosted on PythonAnywhere, which will use the Echo Nest Remix library.

    The problem is that Remix uses ffmpeg and PythonAnywhere only has avconv.

    Is there any way I can use ffmpeg on PythonAnywhere ?

    I’m using PythonAnywhere’s free account if it makes a difference.

    Thank you !