
Recherche avancée
Médias (91)
-
Corona Radiata
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Lights in the Sky
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Head Down
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Echoplex
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Discipline
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Letting You
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (66)
-
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 (...) -
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...) -
Configurer la prise en compte des langues
15 novembre 2010, parAccéder à la configuration et ajouter des langues prises en compte
Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)
Sur d’autres sites (4585)
-
Streaming avi to a red5 server
19 septembre 2012, par user1197115I have a problem with Red5 Media Server.
I installed it on Windows machine and I'm trying to stream *avi file to the server using ffmeg :ffmpeg -i testfile.avi -re -acodec libfaac -ar 22050 -vcodec libx264 -f flv rtmp://localhost/oflaDemo/test
According to the console ffmpeg is streaming to a server.
So I opened Publisher application to see if is it working or not.
http://localhost:5080/demos/publisher.html
I clicked connect, and i got this
NetConnection.Connect.Success
next I chenged stream name to test and pressed play
NetStream.Play.Start
but it didn't work.
I will be really greatful if someone can help me.Kind Regards
Babel -
Assign output to a variable instead to a Output file
25 juin 2013, par rashHere is the Python code :
import subprocess
cmnd = ["ffmpeg", "-i", "/home/xincoz/test/connect.flv", "-acodec", "copy", "-ss", "00:00:00", "-t", "00:00:30", "/home/xincoz/test/output.flv"]
subprocess.call(cmnd)Here I get the 30sec long video output file output.flv from connect.flv video. But i want to store that 30sec long binary data in a variable instead of copying that into an output file.
How can I able to do that ?Please help me. Thanks a lot in advance.
-
RTSP session error using FFMPEG
27 juillet 2015, par Yasin SOYASLANI am using RTSP-RTP over TCP to connect ip camera. I installed ffmpeg library and when i write this code in cmd
ffplay -rtsp_transport tcp rtsp://192.168.1.20
everything works fine for 5 seconds. Then, RTP stream stop. I can see that with Wireshark
[![enter image description here][1]][1]
Second Try
I wanted to know where is error so i connect camera with vlc player. vlc uses live555 library. Then, It works fine !!!
I have noticed that when streaming via VLC there were some RTCP Receiver Reports sent from VLC to the camera ( cyclic like the Sender Reports ). FFmpeg doesn’t send these report
Do you have any idea how can i solve this problem ? Can i send this report manually or is there an option that i should set ?
Thanks