
Recherche avancée
Médias (1)
-
Somos millones 1
21 juillet 2014, par
Mis à jour : Juin 2015
Langue : français
Type : Video
Autres articles (75)
-
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 (...) -
XMP PHP
13 mai 2011, parDixit Wikipedia, XMP signifie :
Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...)
Sur d’autres sites (7797)
-
live-streaming media with
8 février 2012, par Thanh HoangMy live-streaming system streams media in following step :
- Server loads source (from a file, webcam,...)
- Server decodes this source by using ffmpeg to get audio and video stream in raw format
- Server encodes audio and video to aac and libx264 and then stores them with [AVPacket] (http://ffmpeg.org/doxygen/0.6/avpacket_8c.html)
- Then server transmits these packets to client
- Client receive these packets, then calculates pts and dts and then display them using libsdl. (following this [tutorial] (http://dranger.com/ffmpeg/tutorial01.html).
And now, I want to change in client. I want when client receive audio and video packets, It will stream them under http stream, rtp stream or somethings like those to a player such as windows media player, flash player.... Anyone can helps me ? Thanks a lot. :)
-
ffserver - ffmpeg live streaming [closed]
13 octobre 2012, par caplitI have read the ffmpeg & ffserver documentation and I understand how to start the ffserver from documentation and some examples I have read. I also understand how can I change the quality of a video using ffmpeg. The problem is how can I change the quality of a video (change bitrate etc) that is streaming into the client side on the fly.
I mean is there a way to interact ffmpeg and ffserver to change live the quality of a video that is playing on the client ? so the server stop sending the streams that is currently sending and start sending the new streams that created from the change of the quality of the video ?
-
How can I speed up live stream of screen capture with ffmpeg ?
15 octobre 2012, par PICyourBrainI am attempting to stream the desktop of one computer to another computer on an internal network. I am trying to use ffmpeg on the sending side and VLC on the receiving side. I am using screen-capture-recorder as the video input device. I have been trying the command :
ffmpeg -f dshow -i video="screen-capture-recorder" -f mpegts udp://host:port
With this command there is a 2-5 second delay on the receiving machine. I need to get the delay down to less than a second.Does anyone have any suggestions on how to reduce the delay ?