Recherche avancée

Médias (0)

Mot : - Tags -/performance

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (28)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

  • (Dés)Activation de fonctionnalités (plugins)

    18 février 2011, par

    Pour gérer l’ajout et la suppression de fonctionnalités supplémentaires (ou plugins), MediaSPIP utilise à partir de la version 0.2 SVP.
    SVP permet l’activation facile de plugins depuis l’espace de configuration de MediaSPIP.
    Pour y accéder, il suffit de se rendre dans l’espace de configuration puis de se rendre sur la page "Gestion des plugins".
    MediaSPIP est fourni par défaut avec l’ensemble des plugins dits "compatibles", ils ont été testés et intégrés afin de fonctionner parfaitement avec chaque (...)

Sur d’autres sites (6171)

  • Codeigniter - exec ffmpeg (win 8.1 with xampp)

    31 août 2014, par xelA

    i want to merge some image files (jpeg,png) to a short stop motion video clip.

    The User can upload the images and the webapp will do a short movie... Thats the plan.

    I have tried some variations i found in www -> exec, shell_exec

    The ffmpeg.exe is in my root Folder (xampp/htdocs/xxx/ffmpeg.exe)

    I put a function in my controller to do the clip.

    public function render() {

       // Save the Session ID into the variable sessionId
       $sessionId = $this->session->userdata('session_id');
       // Path to the Userimage-Folder
       $image_path = "C:\xampp\htdocs\xxx\uploads\$sessionId";

       $command = "C:\xampp\htdocs\xxx\ffmpeg -framerate 1/5 -i".$image_path."/img_%03d.JPG -c:v libx264 -r 30 -pix_fmt yuv420p out.mp4";

       exec($command);

    }

    The images are already in the same format and have a consecutive numbering.

    I’am still a beginner, so please help me.

    regards :)

  • FFMPEG Wrapping a raw video stream with OGG (or another wrapper)

    9 juillet 2014, par Cykon

    I’m building an application which takes in a rawvideo stream (piped in from an ffmpeg instance), manipulates and reads the raw video data, and pipes the output to another ffmpeg instance for encoding. Everything works great, however I’ve been trying to think of a solution which would allow audio to be sent into my program as well.

    The Ogg container seems to have a great C library, and it appears as if there has been some movement to add support for raw video https://wiki.xiph.org/OggRGB

    My plan was to pipe in a stream formatted for Ogg, use libogg to demux it, after parsing through the video data and manipulating it... use libogg again to encode and pipe out.

    Unfortunately, FFMPEG throws an "Unsupported codec id in stream 0" error when asked to output OGG with rawvideo.

    My test ffmpeg command is as follows :

    ffmpeg.exe -i fs0.mp4 -f ogg -c:v rawvideo -pix_fmt rgb24 -s 192x144 -

    Any solutions, or alternative solutions are welcome. As a side note, my program has the ability to take in multiple videos at once and outputs a combination of the inputs.

  • how to convert any audio file to wav on server side with node.js [on hold]

    9 juin 2014, par pufmaigre

    my dear stackoverflow

    I spent hours looking for an efficient and pretty way to transcode audio on server side, and I found a lot of informations... actually too much informations.

    Sox for Node.js looks fine but there are not so much documentation, I was unable to convert a mp3 to wav with it :

    https://www.npmjs.org/package/sox

    Then fluent ffmpeg sounds good but I have the feeling I will loose a lot of time to achieve my goal with it :

    https://github.com/fluent-ffmpeg/node-fluent-ffmpeg

    and then i found some more obscure stuff like those ones :

    https://github.com/andrewrk/node-plan-transcode

    https://github.com/benvanik/node-transcoding

    I’m not sure it’s really the "stackoverflow spirit" but I’m asking you wich way would you choose to achieve my goal because I’m feeling lost in the codec jungle.

    thanks in advance !! love :)