
Recherche avancée
Autres articles (52)
-
Support de tous types de médias
10 avril 2011Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)
-
Support audio et vidéo HTML5
10 avril 2011MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...) -
Initialisation de MediaSPIP (préconfiguration)
20 février 2010, parLors de l’installation de MediaSPIP, celui-ci est préconfiguré pour les usages les plus fréquents.
Cette préconfiguration est réalisée par un plugin activé par défaut et non désactivable appelé MediaSPIP Init.
Ce plugin sert à préconfigurer de manière correcte chaque instance de MediaSPIP. Il doit donc être placé dans le dossier plugins-dist/ du site ou de la ferme pour être installé par défaut avant de pouvoir utiliser le site.
Dans un premier temps il active ou désactive des options de SPIP qui ne le (...)
Sur d’autres sites (5050)
-
How can i insert 10 seconds of silent audio(null audio without images or video or black video) into video repeat every 15 seconds with ffmpeg ?
1er septembre 2018, par Adam EstelI have a clip
video.mp4
. How can i insert 10 seconds of only silent audio into this clip repeat every 15 seconds until the end of this clip with ffmpeg ?
I knowanullsrc
is an audio so i can’t useoverlay
filter. I research on google for a while but the only option i have isgte(mod(t,15),10))
.Thank you.
-
Video is concatenated but not showing all video after playing First one in ffmpeg
1er décembre 2017, par ChinmoyI am trying to concate three mp4 video using FFMPEG. after executing the ffmpeg commend, when I try to play the final video the one is playing 45 second perfectly and then then make it conflict and stop the video but audio is playing .
I have check finale video duration It’s duration is 120 second which is total duration of thee input video.
I am asking to you guys hwo can i play this video with out conflicting.Here is my code that I have used for concatenate :
ffmpeg -i /Users/mukul/Documents/Nugruv/video/testforplay.mp4 -c copy -bsf:v h264_mp4toannexb -f mpegts /Users/mukul/Documents/Nugruv/video/testforplay.ts
ffmpeg -i /Users/mukul/Documents/Nugruv/video/video3.mp4 -c copy -bsf:v h264_mp4toannexb -f mpegts /Users/mukul/Documents/Nugruv/video/video3.ts
ffmpeg -i /Users/mukul/Documents/Nugruv/video/video4.mp4 -c copy -bsf:v h264_mp4toannexb -f mpegts /Users/mukul/Documents/Nugruv/video/video4.ts
ffmpeg -i "concat:/Users/mukul/Documents/Nugruv/video/testforplay.ts|/Users/mukul/Documents/Nugruv/video/video3.ts|/Users/mukul/Documents/Nugruv/video/video4.ts" -ccopy -bsf:a aac_adtstoasc /Users/mukul/Documents/Nugruv/video/Cam01.mp4
I am waiting for your help.. :) -
Create video with correct FPS from video with incorrect FPS and file containing timestamps for each frame using FFMPEG
4 février 2023, par BojanI have a video file captured from web camera and using OpenCV in python. The nominal FPS of the web cam is 30 FPS, but because of the environment, the actual FPS varies and sometimes can go as low as 24 fps. The recorded video is created using OpenCV's
VideoWriter
, using MP4V FOURCC and always has FPS value of 30, which makes the video's duration incorrect if the actual FPS was not 30. I have a file which contains the timestamps when each frame from the web cam was read (generated using python'stime.time()
).

Question :

Using FFMPEG (or other software) can I use the timestamps information to create new video file (probably VFR file) and then convert it to CFR file ?

I am not sure what is the correct approach to create video file with correct time base.
Maybe I can split the video's frames and save them as images and then use the timestamps and the images to create VFR video, but I want to see if it is possible to do this in another, more elegant way.


Thanks in advance !