Recherche avancée

Médias (1)

Mot : - Tags -/musée

Autres articles (42)

  • MediaSPIP Core : La Configuration

    9 novembre 2010, par

    MediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
    Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...)

  • (Dés)Activation de fonctionnalités (plugins)

    18 février 2011, par

    Pour gérer l’ajout et la suppression de fonctionnalités supplémentaires (ou plugins), MediaSPIP utilise à partir de la version 0.2 SVP.
    SVP permet l’activation facile de plugins depuis l’espace de configuration de MediaSPIP.
    Pour y accéder, il suffit de se rendre dans l’espace de configuration puis de se rendre sur la page "Gestion des plugins".
    MediaSPIP est fourni par défaut avec l’ensemble des plugins dits "compatibles", ils ont été testés et intégrés afin de fonctionner parfaitement avec chaque (...)

  • Soumettre bugs et patchs

    10 avril 2011

    Un logiciel n’est malheureusement jamais parfait...
    Si vous pensez avoir mis la main sur un bug, reportez le dans notre système de tickets en prenant bien soin de nous remonter certaines informations pertinentes : le type de navigateur et sa version exacte avec lequel vous avez l’anomalie ; une explication la plus précise possible du problème rencontré ; si possibles les étapes pour reproduire le problème ; un lien vers le site / la page en question ;
    Si vous pensez avoir résolu vous même le bug (...)

Sur d’autres sites (7537)

  • Storing high quality video stream (from IP Action Camera) continuously to a Storage Device and issues around Write-Speed bottlenecks

    21 mai 2017, par Aldo

    I am looking to get an Action Camera (Eken H8R, or a GoPro) for a project. Let me explain the scenario I have :

    I will obtain a live stream from the camera on to a Raspberry Pi (over WiFi) as shown here. Next, I want to continuously segment this live stream into 10-15 minute video clips and store them in an external Hard Drive (which is connected to the RPi). I am considering this thread, and the avconvcommand mentioned in the answer by Alexander.

    Now, my concern is write-speed limitations. The video stream would probably have a high bitrate, and might be 4k30fps, in which case file sizes would be huge. Would write speed to disk be a bottleneck ? If so, how will the Pi maintain a buffer to achieve this ? Could I run out of space as the memory stick on the Pi would only be around 8 gigs ? If so, what’s a better alternative ? Please correct me if I’m wrong on these as I’m only a beginner.

  • FFmpeg change video speed with -r vs -filter and setpts

    6 mai 2022, par simplesystems

    If I want to change the video speed with ffmpeg,

    


    what exactly is the difference changing the fps :

    


    ffmpeg -y -r 10 -i video.mp4 video_new_fps.mp4

    


    or using filter and setpts :

    


    ffmpeg -i video.mp4 -filter:v "setpts=PTS*3" -an video_new_fps.mp4

    


    It seems that with both options I can speed up or slow down the video.

    


    So which one should be used in which case ?

    


  • Any way to speed up this side by side video merging FFMPEG command ?

    25 mai 2022, par John

    I am taking two mp4 videos and putting them side by side with a slight zoom so it looks better. Right now the best I get is speed at 7x which will still take a long time for an hour-long MP4 video (not to mention the size with ultrafast). Is there anything else I can do ? I thought maybe scaling and cropping first, then combining with copying video and audio but that doesn't appear to be faster.

    


    ffmpeg -y -i input1.mp4 -i input2.mp4 -filter_complex "[0]scale=-2:720,crop=640:720[v0];[1]scale=-2:720,crop=640:720[v1];[v0][v1]hstack;[0:a][1:a]amerge[a]"  -strict experimental -map 0:v -map '[a]' -ac 1 -preset ultrafast -vsync 0 output.mp4