
Recherche avancée
Médias (1)
-
Géodiversité
9 septembre 2011, par ,
Mis à jour : Août 2018
Langue : français
Type : Texte
Autres articles (112)
-
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP automatically converts uploaded files to internet-compatible formats.
Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
All uploaded files are stored online in their original format, so you can (...) -
Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs
12 avril 2011, parLa manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.
Sur d’autres sites (5617)
-
ffprobe : use quotation marks in the xml header output
14 juillet 2021, par James Almer -
doc/filters : remove extra spacing in vid.stab section.
9 octobre 2013, par Clément Bœsch -
Capturing output file of ffmpeg with vid.stab in python into a variable
24 mars 2019, par M. ValterI’m trying to write a python script to stabilize videos using ffmpeg and the vid.stab library.
My problem is that the output file doesn’t seem to go through stdout, so using subprocess.Popen() returns an empty variable.cmd1=["ffmpeg", "-i","./input.MOV", "-vf", "vidstabdetect=stepsize=6:shakiness=10:accuracy=15", "-f","null","pipe:1"]
p = subprocess.Popen(cmd1, stdout=subprocess.PIPE)
vectors, err = p.communicate()The issues is that vibstabdetect takes a filter called result, and outputs a file to whatever’s specified there, and stdout remains empty. (If there’s no result specified it defaults to transforms.trf.)
Is there a way to get the contents of the result file ?
When running the script with the code above it executes without error, but the file is created with the default name and the variable remains empty.