
Recherche avancée
Autres articles (14)
-
List of compatible distributions
26 avril 2011, parThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...) -
Encodage et transformation en formats lisibles sur Internet
10 avril 2011MediaSPIP transforme et ré-encode les documents mis en ligne afin de les rendre lisibles sur Internet et automatiquement utilisables sans intervention du créateur de contenu.
Les vidéos sont automatiquement encodées dans les formats supportés par HTML5 : MP4, Ogv et WebM. La version "MP4" est également utilisée pour le lecteur flash de secours nécessaire aux anciens navigateurs.
Les documents audios sont également ré-encodés dans les deux formats utilisables par HTML5 :MP3 et Ogg. La version "MP3" (...) -
Problèmes fréquents
10 mars 2010, parPHP et safe_mode activé
Une des principales sources de problèmes relève de la configuration de PHP et notamment de l’activation du safe_mode
La solution consiterait à soit désactiver le safe_mode soit placer le script dans un répertoire accessible par apache pour le site
Sur d’autres sites (5909)
-
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 ?
-
Revision 20cf22a128 : Enforce effective motion vector search range This commit explicitly enforces th
21 janvier 2014, par Jingning HanChanged Paths :
Modify /vp9/encoder/vp9_mcomp.c
Enforce effective motion vector search rangeThis commit explicitly enforces the effective motion vector range
in the motion search stage. The range needs to be the intersection
of UMV border, effective absolute motion vector value range, and
the target search area.Change-Id : I1cf7c563e02b1086040dad6c1f4f6be1538635a6
-
FFmpeg-generated .m2v file shows strange video length
15 août 2016, par John Doe 2I created a .m2v file using ffmpeg like this :
ffmpeg -framerate 1/300 -s 720x576 -i img%3d.jpg -c:v mpeg2video -b:v 2000k -r 5 video.m2v
This worked successfully, but if I right click on the
.m2v
file and go to details and scroll to video length I get this information which is really strange ( Using Windows 10) :Video
Length: 256204778:48:05If I run the .m2v file with a program like
PowerDVD
the length of the video is5 minutes
long.Why does this happen ?