
Advanced search
Medias (1)
-
The pirate bay depuis la Belgique
1 April 2013, by
Updated: April 2013
Language: français
Type: Picture
Other articles (31)
-
MediaSPIP Core : La Configuration
9 November 2010, byMediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes; une page spécifique à la configuration de la page d’accueil du site; une page spécifique à la configuration des secteurs;
Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques de (...) -
Creating farms of unique websites
13 April 2011, byMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things): implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...) -
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 September 2013, byCertains 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;
On other websites (8251)
-
avfilter/avf_showspectrum: do not let multiple threads to write to same part of memory
16 August 2016, by Paul B Mahol -
libavcodec/qsv.c: Linux-only code part has been moved to separate function in order...
6 July 2015, by Ivan Uskov -
FFMPEG merge two files cause the video to freeze at the end of the first part
17 January 2015, by AnasI am using FFMPEG to cut and merge video file, these are my commands:
//split the video to three partsffmpeg -i "input.mkv" -ss 00:00:00 -to 00:04:00 -c copy -map 0 -y out0.mkv
ffmpeg -i "input.mkv" -ss 00:05:00 -to 00:22:00 -c copy -map 0 -y out1.mkv
ffmpeg -i "input.mkv" -ss 00:23:00 -c copy -map 0 -y out2.mkv//merge these parts in one video again
ffmpeg -f concat -i mylist.txt -c copy -y output.mkv
//mylist.txt contains:
file out0.mkv
file out1.mkv
file out2.mkvAnd everything works fine, except that the new merged video freeze for 5 seconds at the end of the first merged part, in the above example at sec 04:00 the screen pauses for 5 seconds and then the video continue.
Do you know why this is happening? is there a work around please help.