
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (77)
-
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 (8323)
-
ffmpeg ip camera error invalid data found when processing the input
4 décembre 2022, par mehdiI want to capture images from a remote ip camera (Dahua) using ffmpeg.
I am able to ping the camera ip and see it live on my browser.


Using this command :


ffmpeg -loglevel debug -rtsp_transport tcp -i "rtsp://admin:password@172.28.56.237:37777" -vframes 1 test.jpg



gives this result :


Splitting the commandline.
Reading option '-hide_banner' ... matched as option 'hide_banner' (do not show program banner) with argument '1'.
Reading option '-loglevel' ... matched as option 'loglevel' (set logging level) with argument 'debug'.
Reading option '-rtsp_transport' ... matched as AVOption 'rtsp_transport' with argument 'tcp'.
Reading option '-i' ... matched as input url with argument 'rtsp://admin:password@172.28.56.237:37777/live'.
Reading option '-vframes' ... matched as option 'vframes' (set the number of video frames to output) with argument '1'.
Reading option 'test.jpg' ... matched as output url.
Finished splitting the commandline.
Parsing a group of options: global .
Applying option hide_banner (do not show program banner) with argument 1.
Applying option loglevel (set logging level) with argument debug.
Successfully parsed a group of options.
Parsing a group of options: input url rtsp://admin:password@172.28.56.237:37777/live.
Successfully parsed a group of options.
Opening an input file: rtsp://admin:password@172.28.56.237:37777/live.
[tcp @ 0x5563a5c4b540] No default whitelist set
[tcp @ 0x5563a5c4b540] Original list of addresses:
[tcp @ 0x5563a5c4b540] Address 172.28.56.237 port 37777
[tcp @ 0x5563a5c4b540] Interleaved list of addresses:
[tcp @ 0x5563a5c4b540] Address 172.28.56.237 port 37777
[tcp @ 0x5563a5c4b540] Starting connection attempt to 172.28.56.237 port 37777
[tcp @ 0x5563a5c4b540] Successfully connected to 172.28.56.237 port 37777
rtsp://admin:password@172.28.56.237:37777/live: Invalid data found when processing input




in the camera settings the ports are :


tcp: 37777
udp: 37778
rtsp: 554



I also tried below commands, but the result was the same error :


ffmpeg -loglevel debug -rtsp_transport tcp -i "rtsp://admin:admin110@172.28.56.237:37777/live" -vframes 1 test.jpg




ffmpeg -loglevel debug -i "rtsp://admin:admin110@172.28.56.237:554/live" -vframes 1 test.jpg

result: Server returned 404 not found



I tried this in arch linux and windows and got the same error.


-
capture image from IP camera through ffmpeg in command line or opencv getting a gray image
4 décembre 2015, par rockycaiNow I have a IP camera. I tried to get a image through ffmpeg (like this : ffmpeg -rtsp_transport tcp -i "my rtsp stream address" -y -f image2 test.jpg ).That’s OK ! Or I tried to do this through opencv,no problem too.But when I open the stream in vlc,At the same time,I tried to capture the image ,oh,I just got a gray image.
why ? if I open the stream in vlc two times,that’s also OK ! If capturing the image and view the rtsp stream together,just got a gray image.Is the reason of IP camera ?normal imagegray image -
Streaming and Playing On-the-fly Converted AAC Audio in Qt 5.12.2 Using FFmpeg/LibAV
17 novembre 2023, par ShlxI'm currently working on a Qt (5.12.2) project. I'm trying to play an audio file that is encoded as AAC but stored in an MPEG-4 container, making it unable to be played easily. The current idea is to use ffmpeg / libAV to convert the file on-the-fly when the user tries playing it. How is it possible to


- 

- Stream the file as it is being converted, and
- Open the stream handle in a QMediaPlayer, playing the file ?






I tried using ffmpeg on the command line to make an RTSP stream while converting, but couldn't get it working whatsoever. While fiddling around, I got a working RTP stream (no transcoding) using this command :


ffmpeg -re -f mp3 -i test.mp3 -acodec libmp3lame -ab 128k -ac 2 -ar 44100 -f rtp rtp://127.0.0.1:1234



Most examples I found online only address video streams. I also couldn't find a definitive answer if opening the stream would even be possible on my Qt version (not able to update).


Cheers