
Recherche avancée
Médias (1)
-
Richard Stallman et le logiciel libre
19 octobre 2011, par
Mis à jour : Mai 2013
Langue : français
Type : Texte
Autres articles (22)
-
Keeping control of your media in your hands
13 avril 2011, parThe vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...) -
Submit bugs and patches
13 avril 2011Unfortunately a software is never perfect.
If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
You may also (...) -
Organiser par catégorie
17 mai 2013, parDans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)
Sur d’autres sites (5086)
-
How can I create a process that can be multiplied by a variable number ?
18 octobre 2019, par KadenA 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 variablesumlines
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 variablesumlines
to automatically subproccess call the exact number of files needed ?
Find a screenshot here -
adb screenrecord display only screenshot, it does not stream the screen [closed]
28 avril 2024, par hexolsI 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 ?


-
Detecting frozen frames in video file using ffmpeg or similar
16 décembre 2015, par jakkolwiekI’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 !