Recherche avancée

Médias (2)

Mot : - Tags -/media

Autres articles (24)

  • 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 a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 is the first MediaSPIP stable release.
    Its official release date is June 21, 2013 and is announced here.
    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 (...)

Sur d’autres sites (7245)

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

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

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