
Recherche avancée
Médias (2)
-
SPIP - plugins - embed code - Exemple
2 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
Publier une image simplement
13 avril 2011, par ,
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (53)
-
Pas question de marché, de cloud etc...
10 avril 2011Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
sur le web 2.0 et dans les entreprises qui en vivent.
Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...) -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP automatically converts uploaded files to internet-compatible formats.
Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
All uploaded files are stored online in their original format, so you can (...)
Sur d’autres sites (8406)
-
Audio format not supported in Flash Media Live Encoder from Directshow Audio Filter
1er novembre 2015, par Hamed GHI create a virtual audio filter in DirectShow and introduce it as a AudioInputDevice.
When I select this filter as a Directshow Device in FFMPEG, it’s working without any problem. But in Flash Media Live Encoder(FMLE) it’s not working.
FMLE said "Audio format not supported" when selecting my filter as the Audio Device.
I searched in internet and found the following link. But implementing GetStreamCaps not working for me.
https://forums.adobe.com/thread/778085?tstart=0
Would you please tell me what is the problem ? or which audio connections FMLE accept ?
-
mpegts proxy allowing multiple concurrent views of same source feed
5 juillet 2018, par Yass TI am having trouble finding a (preferably non-commercial) linux compatible project that would allow to "restream" one particular MPEGTS live source feed to multiple clients, without requesting it more than once from the source.
Imagine an mpegts live source feed coming from http://my_mpegts_provider (imagine we have the direct link, no m3u style playlist), I would like a program to be able to grab that source and proxy it to one AND more client devices (let’s say VLC players) when they are requesting it, even if not requested at the same time.
In other words, can we proxy the MPEGTS stream so only our proxy will be seen as the "client" (from the source provider point of view) when multiple devices (on the same network) connect to the SAME source on this side ?
I tried the node-ffmpeg-mpegts-proxy but it clearly showed two separate connections to the source when asking for the same "channel" with two different VLC clients (confirmed with netstat).
Thanks, and sorry in advance if my post is out of stackoverflow rules, I can’t think of a better place to gather some good opinions
-
Need to hide error logs used on video capture with Open CV and Python
16 août 2024, par Rodrigo AliagaTitle : How to hide OpenCV RTSP connection errors in Python ?


I am using OpenCV (4.8.0) with Python to test some RTSP connections. When I run the code, I see these logs on the console :


[rtsp @ 0000029b73b233c0] method SETUP failed: 500 Internal Server Error
[rtsp @ 0000029b73b233c0] method SETUP failed: 500 Internal Server Error
[rtsp @ 0000029b73b218c0] method SETUP failed: 500 Internal Server Error
...
...



I want to hide these errors (or any other warnings) from OpenCV. Below is the function I am using :


cap = cv2.VideoCapture(url)
if not cap.isOpened():
 # print(f"Failed to open RTSP stream: {url}")
 result = False



I know that in OpenCV with C++, there is an option to set cv::utils::logging::LogLevel LOG_LEVEL_SILENT = 0. Is there something similar available in Python ? Or is there another way to suppress these warnings and errors ?


Thanks in advance !