Recherche avancée

Médias (10)

Mot : - Tags -/wav

Autres articles (62)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

Sur d’autres sites (6463)

  • Call system package with Go on App Engine Standard

    8 novembre 2019, par reidreid46

    I’m trying to use FFmpeg in a Go application thats running on Google App Engine Standard. I can get this to run locally, when I point to a local instance of the FFmpeg binary using exec.Command()

    cmd := exec.Command(
       "/Users/justin/Desktop/conversion/ffmpeg", // this won't work on a remote server
       "-i", "pipe:0",
       "-ac", "1",
       "-codec:a", "libmp3lame",
       "-b:a", "48k",
       "-ar", "24000",
       "-f", "mp3",
       "pipe:1",
     )

     cmd.Stdin = bytes.NewReader(synthResp.AudioContent)

     var output bytes.Buffer
     cmd.Stdout = &output
     err = cmd.Run()

    Obviously, this won’t work when I deploy the application, so I need a way to point to a hosted version of the FFmpeg binary. It seems ffmpeg is a system package for the go1.11 App Engine Standard environment.

    What are "System packages" and how do I use them ?
    When I look for documentation, I find a lot of documentation on apt-get, and no documentation on how to use them, App Engine or otherwise. Do I need to install it, or should it already be part of the container(?) that App Engine is running ?

    Do I call it, like I’d call other executables ? If so, that I’d expect this to work, but it doesn’t

    cmd := exec.Command(
       "ffmpeg", // <------ what should this be?
       "-i", "pipe:0",
       "-ac", "1",
       "-codec:a", "libmp3lame",
       "-b:a", "48k",
       "-ar", "24000",
       "-f", "mp3",
       "pipe:1",
     )

     cmd.Stdin = bytes.NewReader(synthResp.AudioContent)

     var output bytes.Buffer
     cmd.Stdout = &output
     err = cmd.Run()

    Logging err, I see exec: "ffmpeg": executable file not found in $PATH

  • lavfi : change the filter registering system to match the other libraries

    3 avril 2013, par Anton Khirnov

    lavfi : change the filter registering system to match the other libraries

  • Match VA-API / VDPAU with zlib / bzlib build system documentation.

    10 juillet 2011, par Carl Eugen Hoyos

    Match VA-API / VDPAU with zlib / bzlib build system documentation.