
Recherche avancée
Médias (1)
-
The pirate bay depuis la Belgique
1er avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (111)
-
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 (11513)
-
I have RTSP I want to convert that into HTTP or HTTPS streaming server ?
19 novembre 2019, par chackersAfter spending lot of time searching the solution, most of the solution I came across is old or not applicable to my system.
I am using the Raspberry pi 3, which is connected to a local IP camera both are interconnected via tp link router.
My local IP camera streams live on RTSP ://192.168.0.11:554
I want this live feed to stream on HTTP or HTTPS. For eg : http://domainame/
I have tried VLC and FFmpeg, here VLC is taking many loads on my raspberry pi which it cannot handle.
Whereas, FFmpeg I had referred some site which leads to FF-server, is no longer working. Sites say to try mkvserver_mk2 (https://github.com/klaxa/mkvserver_mk2) which I am not able to run it successfully.Kindly help me convert RTSP stream to HTTP without much load given on the Raspberry Pi.
Thanks.
Please share your suggestions.
-
FFmpeg INPUT over HTTPS with peer certificate verification
16 janvier 2020, par PistacioIs there a way to verify the INPUT certificate in case of a HTTPS schema with FFmpeg ?
The tls options in FFmpeg use parameters such astls_verify
orlisten
appended to the OUTPUT URL but I need INPUT HTTPS verification. I’d need a way to verify the SSL/TLS server like libcurl or mysql do.ffmpeg -i tls://INPUT?cert_file=PATH_TO_CERT&tls_verify=1
returns
Invalid data found when processing input
Right now I verify the peer with curl/wget and I pipe the output to FFmpeg like this :
curl -sv --cacert PATH_TO_CERT https://INPUT | ffmpeg -i pipe:
but it’s not an elegant solution. Could this be done with FFmpeg only ?
-
Opencv 3.1 compiled with FFMPEG, but won't open https urls
2 mars 2018, par stalagmite7I work on a 16.04 system, and have successfully installed opencv 3.1 with FFMPEG flags enabled. I double checked this was actually the case by cv2.getBuildInformation() and I got FFMPEG = YES.
I am trying to open a video that is hostel on a private server by my workplace (I am logged in to the VPN, in case thats a concern) and I can access this video over the browser. But videocapture with cv2 fails.
>>> cap = cv2.VideoCapture("https://xxx.mp4", cv2.CAP_ANY) #dummy url
>>> cap
<videocapture 0x7f63300fa4b0="0x7f63300fa4b0">
>>> cap.isOpened()
False
</videocapture>This is always the case for https urls. It seems to be able to work with local videos just fine. I have tried a bunch of different thing : initially thought it was a gstreamer problem so I checked my plugins, had some gst-bad versions (ref : https://github.com/GStreamer/gst-plugins-ugly), removed those and replaced with good versions, no joy. Also tried to explicitly tell videoCapture to use cv2.CAP_ANY and cv2.CAP_FFMPEG flags while reading the video, still no luck.
I disabled the Gstreamer flag while compiling opencv, but even with it set to ON, there was no difference in my problem.
I haven’t been able to find a solution to this issue and have been looking and trying different things for days now ! Any ideas ?