Recherche avancée

Médias (1)

Mot : - Tags -/livre électronique

Autres articles (84)

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

  • 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

  • Automated installation script of MediaSPIP

    25 avril 2011, par

    To overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
    You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
    The documentation of the use of this installation script is available here.
    The code of this (...)

Sur d’autres sites (5210)

  • Anomalie #3235 : SPIP (3) génère la classe "spip_out" sur des liens relatifs

    4 octobre 2014, par RastaPopoulos ♥

    Je viens de tester cette liste de lien :

    Un lien intelligent vers la rubrique 1
    Un lien bête vers la rubrique 1
    Un lien vers le RSS
    Un lien vers le plan du site
    Un lien vers un site externe
    

    Le site externe a bien "spip_out".
    Le lien intelligent a bien "spip_in".

    Mais tous les autres n’ont plus rien ! Ni l’un ni l’autre. C’est déjà ça qu’ils n’aient pas "spip_out", mais ce sont bien des liens internes ! Si dans le thème du site je style différemment "spip_in", alors ces liens qui sont bien internes ne s’afficheront pas correctement. Il faut donc effectivement compléter les tests sur ce point.

    Ce qui est compliqué c’est que dans les tests il y a le cas d’un sous-dossier ("/tests/") et là on peut effectivement considérer que ce n’est pas forcément interne (il peut y avoir un autre site différent en sous-dossier). En revanche tous les liens de ma liste ci-dessus sont bien internes.

  • 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 :)

  • 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 :)