
Recherche avancée
Médias (1)
-
Sintel MP4 Surround 5.1 Full
13 mai 2011, par
Mis à jour : Février 2012
Langue : English
Type : Video
Autres articles (58)
-
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 (14246)
-
Using ffmpeg in delphi : interrupt encoding process
5 juillet 2018, par ВячеславI seen this queston, but can’t leave a comment there.
How to interrupt encoding from delphi ? Example, on my form existing a "Cancel" button. How to send a interrupt command ? In
ffmpeg
it’s q key, but I don’t know, how to send key codes from delphi to console application for it.And also second queston about progressbar : I need, that it show state of encoding process (example, seeking from 0 to 100 percent while encoding, i.e. follow
ffmpeg
’s progress values). -
Sending keystrokes to subprocess using Python's popen
10 avril 2018, par Paul Vincent CravenI have a Python 3.6 program that is calling
ffplay
from the ffmpeg library using thePopen
command.I want to send
ffplay
keystrokes so I can control the playback. But nothing seems to happen. Take this example :import subprocess
import time
# Array with the command in it
my_command = ("ffplay", "-nodisp", "-autoexit", "examples/sounds/Fantascape_Looping.mp3")
# Open a subprocess
my_subprocess = subprocess.Popen(my_command,
stdin=subprocess.PIPE,
stdout=subprocess.PIPE,
stderr=subprocess.PIPE)
# Wait 2 seconds
time.sleep(2)
# Try to send an escape:
print("Attempt to send and 'escape' to stop the sound")
my_subprocess.stdin.write(b'\x1b')
# Wait and see what happens
print("Should no longer hear anything")
time.sleep(5)I hear music for 7 seconds, rather than 2 seconds. What is wrong with the code ?
-
Android Screen mirroring via rtsp server
7 juillet 2017, par Anıl Mert ArI was trying to mirror my android phone’s screen to my PC. I actually did that thanks to
ffplay
andadb
. But my question is how I can send it to anrtsp
server. Do I need any additional stuff besides them ?What I can do :
adb exec-out screenrecord --output-format=h264 - | ffplay -
I completely didn’t understand how to send this output to an rtsp server and I don’t know if there is additional thing rather than rtsp I will be so appreciated if you help me. Thanks.