
Recherche avancée
Médias (1)
-
DJ Dolores - Oslodum 2004 (includes (cc) sample of “Oslodum” by Gilberto Gil)
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (38)
-
Use, discuss, criticize
13 avril 2011, parTalk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
A discussion list is available for all exchanges between users. -
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...) -
De l’upload à la vidéo finale [version standalone]
31 janvier 2010, parLe chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
Upload et récupération d’informations de la vidéo source
Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)
Sur d’autres sites (5600)
-
ffmpeg : How to split into smaller segments & repeat last frames ?
25 juillet 2021, par MehmedI want to split the input into smaller
mpeg2video mxf
segments ,but I have to copy the last minutes of each segment to the first of next segment , like this :



I can split it using
Segment Muxer & -segment_time 00:00:10
and know about repeat frames usingloop
filter , but have no any idea how combine Segment
and loop filter to repeat/copy last minutes of each segment to the next segment while splitting.

I tried the following command with no success :


ffmpeg -i input -vcodec mpeg2video -vf loop=loop=1:size=25:start=225 -f segment -segment_time 00:00:10 output



Is it possible by a FFmpeg command ? How ?


-
split a video with overlap between segments
7 mai 2023, par John PankowiczI need to split a video into a sequence of segments like the following : (numbers are mm:ss) 00:00 to 03:05, 03:00 to 06:05, 06:00 to 09:05, etc. In other words, each segment will have 5 seconds of overlap with the following segment. The purpose of this is for a transcription program. Each 3 minute segment will be transcribed separately. The 5 seconds of overlap will help in stitching the transcribed text segments back together.



Do I need to extract each 3 minute and 5 second segment separately ? For example, by doing the following :



ffmpeg -ss 00:03:00 -i in.mp4 -t 00:06:05 -vcodec copy -acodec copy -y out.mp4




Or is there a way to do all the segments in one pass ?



[ Project is : Govmeeting ]


-
split a video with overlap between segments
6 mai 2017, par John PankowiczI need to split a video into a sequence of segments like the following : (numbers are mm:ss) 00:00 to 03:05, 03:00 to 06:05, 06:00 to 09:05, etc. In other words, each segment will have 5 seconds of overlap with the following segment. The purpose of this is for a transcription program. Each 3 minute segment will be transcribed separately. The 5 seconds of overlap will help in stitching the transcribed text segments back together.
Do I need to extract each 3 minute and 5 second segment separately ? For example, by doing the following :
ffmpeg -ss 00:03:00 -i in.mp4 -t 00:06:05 -vcodec copy -acodec copy -y out.mp4
Or is there a way to do all the segments in one pass ?
[ Project is : Govmeeting ]