Recherche avancée

Médias (91)

Autres articles (22)

  • Création définitive du canal

    12 mars 2010, par

    Lorsque votre demande est validée, vous pouvez alors procéder à la création proprement dite du canal. Chaque canal est un site à part entière placé sous votre responsabilité. Les administrateurs de la plateforme n’y ont aucun accès.
    A la validation, vous recevez un email vous invitant donc à créer votre canal.
    Pour ce faire il vous suffit de vous rendre à son adresse, dans notre exemple "http://votre_sous_domaine.mediaspip.net".
    A ce moment là un mot de passe vous est demandé, il vous suffit d’y (...)

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

  • Taille des images et des logos définissables

    9 février 2011, par

    Dans beaucoup d’endroits du site, logos et images sont redimensionnées pour correspondre aux emplacements définis par les thèmes. L’ensemble des ces tailles pouvant changer d’un thème à un autre peuvent être définies directement dans le thème et éviter ainsi à l’utilisateur de devoir les configurer manuellement après avoir changé l’apparence de son site.
    Ces tailles d’images sont également disponibles dans la configuration spécifique de MediaSPIP Core. La taille maximale du logo du site en pixels, on permet (...)

Sur d’autres sites (3784)

  • Ffmpeg concat on windows return protocol error

    2 juillet 2020, par padavan

    hi i have ffmpeg on win10.
I try concat files :

    


    ffmpeg -i "concat:1.jpg|2.jpg" out.gif


    


    but always get only one\first image in out.gif result.

    


    Late i find on manual :
"This is analogous to using cat on UNIX-like systems or copy on Windows."
I try

    


    ffmpeg -i "copy:1.jpg|2.jpg" out.gif


    


    and get error :

    


    


    copy:1.jpg|2.jpg : Protocol not found

    


    


  • [FFmpeg on Windows] : help me converting a set of .png files to a video file

    31 octobre 2016, par Stefano Fedele

    Hi everybody I am on windows 10, I installed FFMpeg and I would like to use it to convert 100 .png image files into a video file.

    I am using it via the prompt, which is the Windows console, and I am struggling with the syntax (which probability comes from Linux). I set the folder in which ffmpeg.exe is contained as a windows system path as suggested on many websites and I moved the prompt to the folders in which the image files are contained which is reported here :

    cd C:\video\pnts + ag 40 nm- during-tmpyp 10-12- laser power 7mw- kinetic100- exposure time 1s- gain

    I would like to convert the image files contained in this folder into a video file, the names of those image files are reported here :

    pnts + ag 40 nm- during-tmpyp 10-12- laser power 7mw- kinetic100- exposure time 1s- gain 20 001.png

    pnts + ag 40 nm- during-tmpyp 10-12- laser power 7mw- kinetic100- exposure time 1s- gain 20 002.png

    ...

    ...

    pnts + ag 40 nm- during-tmpyp 10-12- laser power 7mw- kinetic100- exposure time 1s- gain 20 100.png

    The number of frames per second whould be 2.

    I read on internet that I should have to type something like this

    ffmpeg -i image-%03d.png video.webm

    But it looks like there are a lot of variables to consider and all the times I try to set them and run FFmpeg I get an error from the prompt.
    Is there anyone who could suggest me the proper syntax, please ?

  • FFMPEG under Windows 7(64) - creating timelaps video

    23 janvier 2016, par Me_no_stupit

    My goal is to create a video from a bunch of jpg files. I have chosen FFMPEG (Windows 64) to solve this task :

    The task

    I have more than 4k jpg files in a directory, all following the naming convention pic000000X.jpg (where x is a number)
    i.e. pic_0000001.jpg,pic_0000002.jpg,.,pic_0001337.jpg and so on which I want to create a timelaps video from.

    (source : FFMPEG FAQ - Creating timelaps videos)

    Result

    When I run ffmpeg -i pic%7d.jpg -s:v 1280x720 -c:v libx264 output.mp4 I get the output.mp4 file but it is small and contains only few pictures/frames - nine to be precise (running the reverse command ffmpeg -i output.mp4 test%d.jpg I get test1.jpg to test9.jpg)

    Observation

    It seems to work until pic_0000009.jpg and then the pattern does not recognize pic_00000010.jpg onwards.

    What am I missing or am I doing wrong to only include nine pictures ?
    Thanks for time and effort for giving me some hints.

    P.S. I tried the blob style file pattern but it does not work under windows