Recherche avancée

Médias (91)

Autres articles (73)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-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

  • Installation en mode ferme

    4 février 2011, par

    Le mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
    C’est la méthode que nous utilisons sur cette même plateforme.
    L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
    Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...)

Sur d’autres sites (9428)

  • avformat_open_input() fails to open url

    7 mai 2018, par subha

    I tried to open URL using avformat_open_input API function.
    Initially, I got a warning like,

    Using network protocols without global network initialization. Please use avformat_network_init(), this will become mandatory later.

    After initializing avformat_network_init(), I am getting a negative return value for avformat_open_input() function call.

    INPUT URL : https://mnmedias.api.telequebec.tv/m3u8/29880.m3u8

    Can anyone please help me to find the issue ?

  • Android : How to open a video file using MediaStore with ExoPlayer ?

    15 février 2023, par ShaRy

    I am trying to play the local video files using MediaStore API but all I see is I can access it as an OpenFileDiscriptor object or as InputStream.
But ExoPlayer doesn't have any of these methods to support.
So now how can I open this file using MediaStore API and Play it with Android 10+ ?

    


    Also, does anyone knows this as well how can I create and save a video with Native Libs ? such as FFmpeg using MediaStore API.

    


  • Need to hide error logs used on video capture with Open CV and Python

    16 août 2024, par Rodrigo Aliaga

    Title : 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 !