Recherche avancée

Médias (2)

Mot : - Tags -/plugins

Autres articles (82)

  • 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

  • Demande de création d’un canal

    12 mars 2010, par

    En fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
    Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...)

  • Librairies et binaires spécifiques au traitement vidéo et sonore

    31 janvier 2010, par

    Les logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
    Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
    Binaires complémentaires et facultatifs flvtool2 : (...)

Sur d’autres sites (5722)

  • Stream avi file while its generated on the fly ffmpeg

    22 décembre 2016, par Abdellah

    Is possible to stream live an AVI File generated (continous writing from a third party app) and stream it to RTMP server with ffmpeg ?
    Software1 :
    Continous write to AVI

    FFMPEG :
    Stream this AVI file to an RTMP server

    Thanks

  • Server-side generated video with custom texture - Where to start ?

    12 février 2014, par opznhaarlems

    I am working on a project in which a user can upload an image and then after uploading the image, a video is generated and then displayed, containing the image which was uploaded as some sort of texture/mask. (Like they do in Elf Yourself).

    The original video should contain some sort of placeholder for the image to allow it to move around and be transformed on a matrix.

    I'm not really sure where to start off or how I should even call such a merging/blending process in the first place.

    A few requirements I've came up with so far :
    - The server runs PHP
    - I am able to use GD, Imagick and FFMPEG

    Regards

  • Pause on the first frame before scroll on a ffmpeg script generated video

    20 octobre 2019, par Yuri Refolo

    I need to put a 2 seconds initial pause on the first frame before starting to scroll in the video generated by this script :

    ffmpeg -f lavfi -i color=s=1200x1200 -loop 1 -t 0.08 -i cut.png -filter_complex "[1:v]scale=1200:-2,setpts=if(eq(N\,0)\,0\,1+1/0.02/TB),fps=30[fg]; [0:v][fg]overlay=y=-'t*h*0.01':eof_action=endall[v]" -map "[v]" output.mp4

    I use it to create a vertical scrolling video of my website full screen snapshot.

    I tried everythingh but I can’t find the solution.

    Any help appreciated.