
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (78)
-
Soumettre bugs et patchs
10 avril 2011Un 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 (...) -
Contribute to a better visual interface
13 avril 2011MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community. -
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) (...)
Sur d’autres sites (8688)
-
Why aren't the videos merging ?
25 décembre 2023, par user9987656I have 100 videos (total duration of 10 hours) from one author, and I'm trying to merge them into one large video, but I'm encountering an issue. ffmpeg is giving me several errors with the following message :


"mp4 @ 000002067f56ecc0] Non-monotonic DTS in output stream 0:0 ; previous : 968719404, current : 434585687 ; changing to 968719405. This may result in incorrect timestamps in the output file."


As a result, I end up with a 10-hour video, but I can only view the first 3 hours and the last 2 hours.


What could be causing this problem ? I'm using the streaming copy command.


-f concat -safe 0 -i input.txt -c copy



-
use ffmpeg to cut video,the video will have extra duration
17 juin 2021, par Venusffmpeg -ss 2 -i input.mp4 -c copy -t 5 out.mp4



after I executed the ffmpeg command.

the out.mp4 total have 7 seconds,it starts from the second frame of input.mp4 to the seventh frame of input.mp4.

It only has 5 effective seconds of the input.mp4, the last 2 seconds of input.mp4 is empty.

-
FFMpeg - Trimming out the video after removing duplicate frames
29 avril 2021, par MarianDI removed many duplicate frames from video (and completely removed audio) by this command



ffmpeg -i scene.mkv -vf mpdecimate,setpts=N/FRAME_RATE/TB -map:v 0 scene3.mp4




(by an Mulvya's answer, thanks again).



The resulting video is OK but the total duration will not change - the last frame of original video is frozen to fill the remaining time (when playing back the video).



Is there some way to trim the video so that it will finish at this last frame ?