
Recherche avancée
Médias (91)
-
Corona Radiata
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Lights in the Sky
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Head Down
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Echoplex
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Discipline
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Letting You
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (103)
-
Mise à jour de la version 0.1 vers 0.2
24 juin 2013, parExplications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...) -
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 ;
-
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.
Sur d’autres sites (10309)
-
avformat/rtsp : Set port_off to zero for low min/max port range
4 juillet 2021, par Andriy Gelmanavformat/rtsp : Set port_off to zero for low min/max port range
Fixes :
$ ffmpeg -min_port 32000 -max_port 32001 -i rtsp ://wowzaec2demo.streamlock.net/vod/mp4:BigBuckBunny_115k.mov -f null -
[1] 303871 floating point exception (core dumped)Reviewed-by : Martin Storsjö <martin@martin.st>
Signed-off-by : Andriy Gelman <andriy.gelman@gmail.com> -
ffmpeg is cutting video length incorrectly
1er mars 2018, par jameshwart lopezI use ffmpeg to check the length of the video and to cut video.
I have a video with the lenght of 19.458333 seconds that’s why i want to cut it to only have 19 seconds because i don’t want the floating point.
I check the video length using below command
ffprobe -i "video.avi" -show_entries format=duration -v quiet -of csv="p=0"
And I use below command to cut video the video
ffmpeg -i "video.avi" -ss 00:00:00 -t 00:00:19.000 -c copy out.mp4
or
ffmpeg -i "video.avi" -ss 00:00:00 -t 19 -c copy output.avi
The problem i have is when i cut the video with the above command and check the length the output file’s length is 19.018 seconds. Can someone help me with this problem ?
-
Checkasm : assembly testing and benchmarking tool
11 juillet 2015, par Henrik GramnerCheckasm : assembly testing and benchmarking tool
It provides the following features :
* verify correctness by comparing output to the C version.
* detect failure to save and restore clobbered callee-saved registers.
* detect 32-bit parameters being used as if they were 64-bit in x86-64
(the upper halves are not guaranteed to be zero - but in practice
they very often are, which makes those bugs hard to spot otherwise).
* easy benchmarking.Compile by running ’make checkasm’.
Execute by running ’tests/checkasm/checkasm’.Optional arguments are ’—bench’ to run benchmarks for all functions,
’—bench=<pattern>’ to run benchmarks for all functions that starts with
<pattern>, and ’<integer>’ to seed the PRNG for reproducible results.Contains unit tests for most h264pred functions to get started, more tests
can be added afterwards using those as a reference.Loosely based on code from x264. Currently only supports x86 and x86-64,
but additional architectures shouldn’t be too much of an obstacle to add.Note that functions with floating point parameters or floating point
return values are not supported. Some compiler-specific features or
preprocessor hacks would likely be required to add support for that.Signed-off-by : Janne Grunau <janne-libav@jannau.net>