Recherche avancée

Médias (91)

Autres articles (52)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

Sur d’autres sites (4986)

  • python - tqdm progress bar on ffmpeg process with avs pipe

    9 octobre 2019, par MeSo2

    I am trying to implement a tqdm progress bar, but have no idea on how to do this when calling ffmpeg with check_output. (Most of the commands are set inside the avs file.)

    from subprocess import check_output
    check_output("ffmpeg -i \"temp_AVS.avs\" -c:v libx264 -b:v 25M -c:a aac 1.mp4", shell=True)

    I cam across this Can ffmpeg show a progress bar ? but nothing hints on how to best implement it with my code.

    I also found this related post How to link the ffmpeg transcoding process information into a vb6 GUI app ?, and it look like I just need to call for the ffmpeg output. But I am note sure how to do that.

  • System.Diagnostics.Process pipe (vertical bar) not accepted as argument

    28 septembre 2019, par emp

    I’m trying to execute this code using System.Diagnostics.Process. It works fine in command line. But in C# it’s failing on the | character.

    var myProcess = new Process();
    var p = new ProcessStartInfo();

    var sArgs = " -i emp.mp3 -f wav - | neroAacEnc -ignorelength -q 0.5 -if - -of emp.mp4";
    p.FileName = "ffmpeg.exe";
    p.CreateNoWindow = false;
    p.RedirectStandardOutput = false;
    p.UseShellExecute = false;
    p.Arguments = sArgs;

    myProcess.StartInfo = p;

    myProcess.Start();
    myProcess.WaitForExit();

    It gives the following error :

    Unable to find a suitable output format for ’|’ : Invalid argument

    I’ve looked around on stackoverflow and found the following hint but it is also not working :

    var psi = new ProcessStartInfo("ffmpeg.exe");
    psi.Arguments =
       "\"-i emp.mp3 -f wav -\" | \"neroAacEnc -ignorelength -q 0.5 -if - -of emp.mp4\"";
    psi.CreateNoWindow = false;
    psi.UseShellExecute = false;

    var process = new Process { StartInfo = psi };

    process.Start();
    process.WaitForExit();

    gives the following error :

    Unrecognized option ’i emp.mp3 -f wav -’
    Failed to set value ’|’ for option ’i emp.mp3 -f wav -’

  • exec ffmpeg stdout pipe stalling

    28 septembre 2019, par haxmat

    I’ve been trying to get the exec stdoutpipe from ffmpeg and write it into a different file. However, it stalls and doesn’t finish executing the command.

    package main

    import (
       "bytes"
       "io"
       "io/ioutil"
       "log"
       "os"
       "os/exec"
    )

    func stdinfill(stdin io.WriteCloser) {
       fi, err := ioutil.ReadFile("music.ogg")
       if err != nil {
           log.Fatal(err)
       }
       io.Copy(stdin, bytes.NewReader(fi))
    }

    func main() {
       runcommand()
    }

    func runcommand() {

       cmd := exec.Command("ffmpeg", "-i", "pipe:0", "-f", "mp3", "pipe:1")
       stdin, err := cmd.StdinPipe()
       if err != nil {
           log.Fatal(err)
       }

       stdout, err := cmd.StdoutPipe()
       if err != nil {
           log.Fatal(err)
       }

       cmd.Stderr = os.Stderr

       err = cmd.Start()
       if err != nil {
           log.Fatal(err)
       }

       stdinfill(stdin)

       fo, err := os.Create("output.mp3")
       if err != nil {
           log.Fatal(err)
       }
       io.Copy(fo, stdout)

       defer fo.Close()

       err = cmd.Wait()
       if err != nil {
           log.Fatal(err)
       }

    }

    does anyone have any ideas ? It starts running ffmpeg but just stalls.