
Recherche avancée
Autres articles (88)
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains 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 ;
-
Organiser par catégorie
17 mai 2013, parDans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...) -
Publier sur MédiaSpip
13 juin 2013Puis-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 (7217)
-
Storing high quality video stream (from IP Action Camera) continuously to a Storage Device and issues around Write-Speed bottlenecks
21 mai 2017, par AldoI 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
avconv
command 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 simplesystemsIf 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 JohnI 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