
Recherche avancée
Médias (39)
-
Stereo master soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
ED-ME-5 1-DVD
11 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
1,000,000
27 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Demon Seed
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Four of Us are Dying
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Corona Radiata
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (105)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela. -
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 ;
Sur d’autres sites (18427)
-
How to use ffmpeg to split a video and then merge it smoothly ? [duplicate]
16 juin 2017, par leandro moreiraThis question is an exact duplicate of :
The idea is to split a video into
n
segments and process them separated and when the process is done to merge the segments into a full video.I tried using the following approach :
```
// spliting
ffmpeg -i video.mp4 -c:v copy -c:a copy -ss 0 -t 10 video_0_10.mp4
ffmpeg -i video.mp4 -c:v copy -c:a copy -ss 10 -t 20 video_10_20.mp4
vim video_list.txt (with all files)
// joining (merging them)
ffmpeg -f concat -safe 0 -i video_list.txt -c:v copy -c:a copy new_video.mp4```
But when I tried to play the
new_video.mp4
it didn’t play (using VLC) smooth, it froze seemly at the moment of the joining.What’s the best way to split a bigger video into several smaller, work on them and after joining the smaller into a new ?
-
FFmpeg : How to split video efficiently ?
4 novembre 2023, par AntonyI wish to split a large avi video into two smaller consecutive videos. I am using ffmpeg.



One way is to run ffmpeg two times :



ffmpeg -i input.avi -vcodec copy -acodec copy -ss 00:00:00 -t 00:30:00 output1.avi
ffmpeg -i input.avi -vcodec copy -acodec copy -ss 00:30:00 -t 00:30:00 output2.avi




But according to manpage of ffmpeg, I can make more than one ouput file from one input file using just one line :



ffmpeg -i input.avi -vcodec copy -acodec copy -ss 00:00:00 -t 00:30:00 output1.avi \
 -vcodec copy -acodec copy -ss 00:30:00 -t 00:30:00 output2.avi




My question is, does the later approach save computation time and memory ?


-
Split screen video cliping with FFMpeg
11 avril 2014, par Justinasi have one video source with 4 different videos inside :
As you can see, i'm using VLC to view it and there is only one controlling window. If i press stop button, every 4 videos will stop and so on.
Problem is, i have to use FFMpeg and cut mini-clip from this source, so it will be playable in all 4 windows again. Clipping ordinary video works just fine with command
ffmpeg.exe -y -i $input -ss $startTime -t $length -acodec copy -vcodec copy $output 2>&1
. But when used for this one split-screen video, i get only one source clip instead of all 4 in same place.Any detailed information about this video is welcomed because i don't even know how exactly this type of video is called, as well as any information about clipping with ffmpeg that video.