
Recherche avancée
Médias (91)
-
#3 The Safest Place
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#4 Emo Creates
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#2 Typewriter Dance
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#1 The Wires
11 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
ED-ME-5 1-DVD
11 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
Revolution of Open-source and film making towards open film making
6 octobre 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (86)
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette 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. -
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)
Sur d’autres sites (12883)
-
Determine video bitrate Python
7 juin 2021, par ThunderssucksI have a video downloaded from Telegram and I need to determine its bitrate.
I have moviepy (pip install moviepy, not the developer version).
Also, I have ffmpeg, but I don't know how to use it in python.
Also, any other library would work for me.


-
Révision 21431 : L’autorisation qui détermine si une personne peut éditer les liaisons (par exemp...
18 juillet 2014, par marcimat ☺☮☯♫Effectivement, dans les traitements, pour qu’ils soient pris en compte, l’autorisation de modifier l’objet cible (ici l’article) est utilisée également.
On ajoute donc ce test d’autorisation en plus dans le charger.De la sorte, un rédacteur qui affiche un article dont il n’est pas l’auteur, ne voit plus des actions ’retirer ce mot’ ou ’ajouter un mot clé’
alors qu’elles ne seront pas traitées, puisqu’il ne peut pas modifier l’article.Ferme #3223
-
When ffmpeg transcodes, How to use expr to determine video resolution auto set -b:v suitable bit rate
2 septembre 2022, par SevenFantasticI tried to use this code, but ffmpeg doesn't recognize this way of writing


ffmpeg -i .\test.MP4 -b:v "expr: if(gte(iw,800), 2000K, 1000K)" -f mp4 -y output.mp4



even replace the iw to const 1000, it doesn`t work.


ffmpeg -i .\test.MP4 -b:v "expr: if(gte(1000,800), 2000K, 1000K)" -f mp4 -y output.mp4



But this way of writing it works fine I'm baffled


ffmpeg -i .\test.MP4 -force_key_frames "expr: gte(t,n_forced * 15)" -f mp4 -y output.mp4