
Recherche avancée
Autres articles (67)
-
Participer à sa traduction
10 avril 2011Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
Actuellement MediaSPIP n’est disponible qu’en français et (...) -
Support de tous types de médias
10 avril 2011Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)
-
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 (15248)
-
ffmpeg video compression taking too much time to execute
13 mai 2015, par RakhiI want to compress video file while uploading the video. I installed the ffmpeg for this and , I am using the below code.
Code for video stream compression :-
shell_exec($ffmpeg -i test.mp4 -s 320x240 new.mp4);
Video getting compressed. But this takes too much time to compress and I always getting
"Maximum execution time of 30 seconds exceeded"
, error for this.Please help me to sort out this. I don’t want to change my maximum execution time. Is there is any mistake in the above code please help me to rectify it or suggest me another method or code...
-
Identifying the I frames before and after a given time
2 novembre 2017, par dne202I’m trying to find a method for finding the I Frame before and after an inputted time. So far my method for finding the I frame preceding a time is
ffprobe -select_streams v -show_frames -show_entries frame=pkt_pts_time,pict_type -v quiet input.mp4 | awk -F= '/pict_type=/ { if (index($2, "I")) { i=1; } else { i=0; } } /pkt_pts_time/ { if (i && ($2 <= 1)) print $2; }' | head -n 1
Yet this seems to identify the frame after the preceding I frame, not the I frame itself. How do I get it to output the pkt_pts_time of the actual I frame ?
-
Start ffmpeg recording at a specified date/time ?
4 janvier 2016, par Andy BIs it possible to execute ffmpeg and start screen capturing at a specific date/time ?
I have an issue with the start-up latency and I can’t synchronize ffmpeg with another application well.
Or, is there some other way to control the time when ffmpeg starts capturing ?