
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 (9)
-
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 (...) -
Les thèmes de MediaSpip
4 juin 20133 thèmes sont proposés à l’origine par MédiaSPIP. L’utilisateur MédiaSPIP peut rajouter des thèmes selon ses besoins.
Thèmes MediaSPIP
3 thèmes ont été développés au départ pour MediaSPIP : * SPIPeo : thème par défaut de MédiaSPIP. Il met en avant la présentation du site et les documents média les plus récents ( le type de tri peut être modifié - titre, popularité, date) . * Arscenic : il s’agit du thème utilisé sur le site officiel du projet, constitué notamment d’un bandeau rouge en début de page. La structure (...) -
Déploiements possibles
31 janvier 2010, parDeux types de déploiements sont envisageable dépendant de deux aspects : La méthode d’installation envisagée (en standalone ou en ferme) ; Le nombre d’encodages journaliers et la fréquentation envisagés ;
L’encodage de vidéos est un processus lourd consommant énormément de ressources système (CPU et RAM), il est nécessaire de prendre tout cela en considération. Ce système n’est donc possible que sur un ou plusieurs serveurs dédiés.
Version mono serveur
La version mono serveur consiste à n’utiliser qu’une (...)
Sur d’autres sites (2816)
-
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 !
-
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 ?


-
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