Recherche avancée

Médias (1)

Mot : - Tags -/wave

Autres articles (60)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • MediaSPIP Core : La Configuration

    9 novembre 2010, par

    MediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
    Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...)

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

Sur d’autres sites (10202)

  • tests/iamf : match stream group by id in some tests

    10 août 2024, par James Almer
    tests/iamf : match stream group by id in some tests
    

    Increases specifier parsing code coverage a little bit.

    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] tests/fate/iamf.mak
  • 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;

  • Output video file of ffmpeg command video and audio doesn't match

    6 juillet 2022, par Barry

    i'm trying to trim a video file using ffmpeg using this command&#xA;ffmpeg -i input.mp4 -ss 00:05:20 -t 00:10:00 -c:v copy -c:a copy output.mp4 . The problem is when i open the output video, the audio starts normally but the video appears only 5 seconds after. I tried removing the -c copy option and output is accurate but the process is very slow. So my question is how to make output video/audio match when using -c copy option, or how to make the process faster when not using -c copy option. It's my first time using this so i don't know much about video/audio encoding, i am just trying to extract a video clip from a php script.

    &#xA;