Recherche avancée

Médias (1)

Mot : - Tags -/biographie

Autres articles (45)

  • Other interesting software

    13 avril 2011, par

    We don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
    The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
    We don’t know them, we didn’t try them, but you can take a peek.
    Videopress
    Website : http://videopress.com/
    License : GNU/GPL v2
    Source code : (...)

  • 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 (7270)

  • Detecting frozen frames in video file using ffmpeg or similar

    16 décembre 2015, par jakkolwiek

    I’m trying to find a way to analyze couple of video files (mov) in order to find files with frozen frames or black screens appearing. I know that using simple command with ffmpeg returns the start/stop point and duration of black screens, unfortunately I can’t find any solution for frozen frames. The video files are rather small and definitely not high quality, but I need to distinguish the broken files apart from good ones. The thing is, it has to be to use as a simple shell command or library in order to use it with Java, Python, Ruby or similar. Any advice is much appreciated !

  • adb screenrecord display only screenshot, it does not stream the screen [closed]

    28 avril 2024, par hexols

    I have an Android TV, I want to stream its screen in my Ubuntu PC.
I used this command :

    


    adb shell screenrecord --output-format=h264 - | ffplay -


    


    and after waiting for a while it displays the screenshot of the TV. But I want to display live stream of the Android TV.
I also used the following command as well but got the same result :

    


    adb exec-out screenrecord --bit-rate=16m --output-format=h264 --size 800x600 - | ffplay -framerate 60 -framedrop -bufsize 16M -


    


    How can I achieve this using this command ?
Or is there a way to achieve it with another way by using VLC/Gstreamer/FFMPEG except using scrcpy/vysor ?

    


  • How can I create a process that can be multiplied by a variable number ?

    18 octobre 2019, par Kaden

    A bit hard to explain this one, but I have an ingest of a variable amount of .mp4 files (sometimes it’s 30, other times it’s 10) and I need to have a subproccess.call('code', shell=True) for each of the .mp4 files that are being ingested into that folder. Each file has already been renamed in numeric order (1.mp4, 2.mp4, 3.mp4, etc...) and I can store the number of ingested files into a variable sumlines using the code
    with open(urls.txt", 'r') as file:     sumlines = sum(1 for _ in file)
    So my question is, is there a way I can use the variable sumlines to automatically subproccess call the exact number of files needed ?
    Find a screenshot here