
Recherche avancée
Médias (1)
-
Video d’abeille en portrait
14 mai 2011, par
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (104)
-
Use, discuss, criticize
13 avril 2011, parTalk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
A discussion list is available for all exchanges between users. -
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, (...) -
MediaSPIP Player : les contrôles
26 mai 2010, parLes contrôles à la souris du lecteur
En plus des actions au click sur les boutons visibles de l’interface du lecteur, il est également possible d’effectuer d’autres actions grâce à la souris : Click : en cliquant sur la vidéo ou sur le logo du son, celui ci se mettra en lecture ou en pause en fonction de son état actuel ; Molette (roulement) : en plaçant la souris sur l’espace utilisé par le média (hover), la molette de la souris n’exerce plus l’effet habituel de scroll de la page, mais diminue ou (...)
Sur d’autres sites (9586)
-
convert h264 codec to h263 using avconv
11 juillet 2013, par Bagesh SharmaI am new to this conversion process and also have very little understanding of this.
My requirement is to convert an .mp4 video having H.264 codec to .mp4 video having H.263 codec. I tried this
avconv -y -i input_video.mp4 -c:v h263 -c:a libmp3lame output_video.mp4But i am getting error like
Error while opening encoder for output stream #0:0 - maybe incorrect parameters such as bit_rate, rate, width or heightPlease suggest. Any help is appreciated . Thanks in Advance !!!
-
Installing FFmpeg in Red Hat 5 without internet connection
22 septembre 2014, par kobain8I am trying to install the last working version of FFmpeg over Red Hat 5 and the machine has no internet connection, so I have to bring all the packages and required dependencies in a USB. The problem I am having is to get everything I would need for it.
I searched through Google to find some guide or documentation to hep me, but there is nothing valuable for me.
The version I got install was FFmpeg 0.6, but it is too old for my purpose of grabbing with x11grab, so anyone has any suggestion in order to get install one of the last versions of FFmpeg.
Thanks in advance, right now I need some light !!
-
Audio going out of sync when using setpts and tempo in ffmpeg
30 mai 2019, par loveforfire33I am trying to slow down a video and its audio at the same time (mp4). I have tried doing the audio and video separately with code similar to the command below, but still get the same effect.
The audio slowly goes out of sync with the video after roughly 30 seconds (audio goes faster).
-i "INPUT" -filter_complex "[0:v]setpts=1.1*PTS[v] ;[0:a]atempo=0.9[a]" -map "[v]" -map "[a]" "OUTPUT"
Any advice would be appreciated. Thanks in advance.