Recherche avancée

Médias (0)

Mot : - Tags -/diogene

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (28)

  • 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

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

Sur d’autres sites (6310)

  • avformat/dvdvideodec : open subdemuxer after initializing IFO headers

    7 octobre 2024, par Marth64
    avformat/dvdvideodec : open subdemuxer after initializing IFO headers
    

    It is wasteful to open the subdemuxer if an error occurs while
    initializing streams or reading IFO headers.

    Signed-off-by : Marth64 <marth64@proxyid.net>

    • [DH] libavformat/dvdvideodec.c
  • Open cv.VideoCapture(index) - ffmpeg list camera names - How to match ?

    15 novembre 2024, par Chris P
        def fetch_camera_input_settings(self):&#xA;        try:&#xA;            self.database_functions = database_functions&#xA;&#xA;            self.camera_input_device_name = database_functions.read_setting("camera_input_device_name")["value"]&#xA;            self.camera_input_device_number = int(self.database_functions.read_setting("camera_input_device_number")["value"])&#xA;&#xA;            self.camera_input_devices = [[0,-1,"Καμία συσκευή κάμερας"]]&#xA;            self.available_cameras = [{"device_index":-1,"device_name":"Καμία συσκευή κάμερας"}]&#xA;&#xA;            # FFmpeg command to list video capture devices on Windows&#xA;            cmd = ["ffmpeg", "-list_devices", "true", "-f", "dshow", "-i", "dummy"]&#xA;            result = subprocess.run(cmd, stderr=subprocess.PIPE, stdout=subprocess.PIPE, text=True)&#xA;            output = result.stderr  # FFmpeg sends device listing to stderr&#xA;&#xA;            # Updated regular expression to capture both video and audio devices&#xA;            device_pattern = re.compile(r&#x27;\[dshow @ .&#x2B;?\] "(.*?)" \(video\)&#x27;)&#xA;            cameras = device_pattern.findall(output)&#xA;            counter = 0&#xA;            for camera in cameras:&#xA;                counter &#x2B;= 1&#xA;                self.camera_input_devices.append([counter,counter-1,camera])&#xA;                self.available_cameras.append({"device_index": counter-1, "device_name": camera})&#xA;&#xA;            self.to_emitter.send({"type":"available_devices","devices":self.camera_input_devices,"device_index":self.camera_input_device_number})&#xA;        except:&#xA;            error_message = traceback.format_exc()&#xA;            self.to_emitter.send({"type":"error","error_message":error_message})&#xA;&#xA;

    &#xA;

    How to match ffmpeg camera device names output with cv2.VideoCapture which wants camera index as input ?

    &#xA;

  • how to download m3u8 with ffmpeg ? [hls prompts : Unable to open key file skd:xxxxxxx] [closed]

    18 octobre 2024, par Mam Ghagh

    There is a m3u8 manifest like :

    &#xA;

    #EXTM3U&#xA;#EXT-X-VERSION:5&#xA;#EXT-X-TARGETDURATION:7&#xA;#EXT-X-PLAYLIST-TYPE:VOD&#xA;#EXT-X-KEY:METHOD=SAMPLE-AES,URI="skd://xxxxxx",IV=0xXXXXXX,KEYFORMAT="com.apple.streamingkeydelivery",KEYFORMATVERSIONS="1"&#xA;#EXTINF:6,&#xA;https://someurl.com/index_1_0.ts&#xA;#EXTINF:6,&#xA;https://someurl.com/index_2_0.ts&#xA;...&#xA;

    &#xA;

    which is available on https://someurl.com/my.m3u8
    &#xA;So, When I executed ffmpeg command
    &#xA;ffmpeg -i "https://someurl.com/my.m3u8" -c copy out.mp4
    &#xA;the following message appeared
    &#xA;[hls @ 000002de75f89bc0] Unable to open key file skd://xxxxxx
    &#xA;Now the question is, What is the key and How should I address it ?

    &#xA;