
Recherche avancée
Médias (9)
-
Stereo master soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
Elephants Dream - Cover of the soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
#7 Ambience
16 octobre 2011, par
Mis à jour : Juin 2015
Langue : English
Type : Audio
-
#6 Teaser Music
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#5 End Title
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#3 The Safest Place
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
Autres articles (82)
-
Submit bugs and patches
13 avril 2011Unfortunately a software is never perfect.
If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
You may also (...) -
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
MediaSPIP Player : problèmes potentiels
22 février 2011, parLe lecteur ne fonctionne pas sur Internet Explorer
Sur Internet Explorer (8 et 7 au moins), le plugin utilise le lecteur Flash flowplayer pour lire vidéos et son. Si le lecteur ne semble pas fonctionner, cela peut venir de la configuration du mod_deflate d’Apache.
Si dans la configuration de ce module Apache vous avez une ligne qui ressemble à la suivante, essayez de la supprimer ou de la commenter pour voir si le lecteur fonctionne correctement : /** * GeSHi (C) 2004 - 2007 Nigel McNie, (...)
Sur d’autres sites (11625)
-
Revision e869869d22 : Removing unnecessary casts from quantization code. Change-Id : I64172710654e95a9
28 février 2014, par Dmitry KovalevChanged Paths :
Modify /vp9/encoder/vp9_mbgraph.c
Modify /vp9/encoder/vp9_onyx_if.c
Modify /vp9/encoder/vp9_segmentation.c
Modify /vp9/encoder/vp9_segmentation.h
Modify /vp9/encoder/vp9_vaq.c
Removing unnecessary casts from quantization code.Change-Id : I64172710654e95a90ee754d14d7104337d28010f
-
Revision f72e072555 : Refactoring setup_pre_planes function. Removing set_refs, adding set_ref functi
4 juillet 2013, par Dmitry KovalevChanged Paths :
Modify /vp9/common/vp9_reconinter.h
Modify /vp9/decoder/vp9_decodframe.c
Modify /vp9/encoder/vp9_encodeframe.c
Modify /vp9/encoder/vp9_firstpass.c
Modify /vp9/encoder/vp9_rdopt.c
Refactoring setup_pre_planes function.Removing set_refs, adding set_ref function.
Change-Id : I5635c478b106ae4e57d317f1c83d929644307e63
-
Removing audio from video using ffmpeg is reducing the duration
22 mai 2019, par Arigato MangaI am using ffmpeg to remove audio from a video and to my surprise after removing the audio the duration of the newly created file is less than the original file.
Below are the commands i used,
ffmpeg -i input.mp4 -c copy -an op.mp4
ffmpeg -i input.mp4 -map 0:0 -c:v copy op.mp4The size of input is 5 seconds and the size of op is 3 seconds.
There were no errors during the execution, below is the log,
Stream mapping:
Stream #0:0 -> #0:0 (copy)
Press [q] to stop, [?] for help
frame= 97 fps=0.0 q=-1.0 Lsize= 273kB time=00:00:04.95 bitrate=451.1kbits/s speed=1.65e+03x
video:271kB audio:0kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead: 0.693547%Could someone help me know if this is a known issue or im missing something.