Recherche avancée

Médias (0)

Mot : - Tags -/presse-papier

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

Autres articles (42)

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

  • 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

Sur d’autres sites (5751)

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

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