
Advanced search
Medias (91)
-
999,999
26 September 2011, by
Updated: September 2011
Language: English
Type: Audio
-
The Slip - Artworks
26 September 2011, by
Updated: September 2011
Language: English
Type: Text
-
Demon seed (wav version)
26 September 2011, by
Updated: April 2013
Language: English
Type: Audio
-
The four of us are dying (wav version)
26 September 2011, by
Updated: April 2013
Language: English
Type: Audio
-
Corona radiata (wav version)
26 September 2011, by
Updated: April 2013
Language: English
Type: Audio
-
Lights in the sky (wav version)
26 September 2011, by
Updated: April 2013
Language: English
Type: Audio
Other articles (46)
-
Installation en mode ferme
4 February 2011, byLe mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
C’est la méthode que nous utilisons sur cette même plateforme.
L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...) -
Multilang : améliorer l’interface pour les blocs multilingues
18 February 2011, byMultilang 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. -
MediaSPIP v0.2
21 June 2013, byMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)
On other websites (6457)
-
ffmpeg sync parts of video or exclude intersection frames
25 October 2014, by NadYI have two video files that make part of a bigger one, but both parts contain a portion that repeats itself.
Eg. v1: 00m-16m ; v2: 10m-20m ; the part that repeats in both videos it’s 10m-16mIs there a way I could recreate the big video by automatically detect the intersection and exclude it from one of the videos? Or can I find the time interval of the intersection?
Thanks!
-
FFMPEG : Cut specific parts of a video, and merge them in a single file
19 February 2017, by Jay D.I would like to cut out specific parts of a mp4 video, and merge back those parts to create a single video file. This is to make an animated preview of the video.
More specifically :
Cut out these parts of a video :- Part 1 : start time of the cut = 20% of total time ; end time of the
cut = 20% of total time + 3seconds, - Part 2 : 40% of total time ; 40%nof total time + 3 seconds
- Part 3 : 60% of total time ; 60% of total time + 3 seconds
- Part 4 : 80% of total time ; 80% of total time + 3 seconds
(The videos are more than 3 minutes long, so there should not be any overlap in the parts)
Then merge those 4 parts in a new mp4 video file. How do you do that with FFMPEG ?
Edit : so this is as far as I got for this question :
I found answers to questions on "Superuser" and "Stackexchange" for these questions on FFMPEG:
How to get video durations in seconds
Cut part from video file with start/end positions
Concatenate mp4 files
So : Get total time of video :
$ ffprobe -v error -show_entries format=duration \
-of default=noprint_wrappers=1:nokey=1 -sexagesimal inputvideo.mp4With the -sexagesimal I should get the right time format to use after.
Cut out part of video
ffmpeg -ss [start] -i in.mp4 -t [duration] -c copy /path/videopart[number].mp4
Right here I don’t know :
How to do an operation on total time (20%, 40%... then 20% +3 seconds, 40% +3 seconds..)
How to properly implement it in the code lineCreate a file videoparts.txt with the files names :
$ cat videoparts.txt
file '/path/videopart1.mp4'
file '/path/videopart2.mp4'
file '/path/videopart3.mp4'
file '/path/videopart4.mp4'Then this should merge them in a single file :
$ ffmpeg -f concat -i videoparts.txt -c copy outputvideo.mp4
- Part 1 : start time of the cut = 20% of total time ; end time of the
-
avdevice/oss_dec: account for sample size when computing timestamp
1 June 2022, by Matt Jacobsonavdevice/oss_dec: account for sample size when computing timestamp
Don't assume each sample is one byte in size. Doing so results in wrong and
occasionally non-monotonically-increasing timestamps.Fix nearby cosmetic typo.
Signed-off-by: Marton Balint <cus@passwd.hu>