
Recherche avancée
Autres articles (24)
-
La file d’attente de SPIPmotion
28 novembre 2010, parUne file d’attente stockée dans la base de donnée
Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...) -
Problèmes fréquents
10 mars 2010, parPHP et safe_mode activé
Une des principales sources de problèmes relève de la configuration de PHP et notamment de l’activation du safe_mode
La solution consiterait à soit désactiver le safe_mode soit placer le script dans un répertoire accessible par apache pour le site -
Personnaliser les catégories
21 juin 2013, parFormulaire de création d’une catégorie
Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
On peut modifier ce formulaire dans la partie :
Administration > Configuration des masques de formulaire.
Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)
Sur d’autres sites (5765)
-
how to cut audio file and merge with video file in android ?
23 octobre 2017, par Mayank SugandhiI want to cut audio and merge an audio file with video programmatically in android.
I don’t know how to work with FFMPEG , can anyone tell me how to start with or another solution ?
Any Help ?
-
Combining a movie file with a text file
12 décembre 2012, par HugoCurrent Status : I have a movie I recorded on a microscopy and a .txt file with two columns : time and temperature. This file is synchronous with the video.
I would like to 'edit' the video so there is a text box with the temperature that would update as the movie plays.My approach, for the moment, is to use
ffmpeg
. I managed to draw some text and it seems all is working as intended.The problem is : I can't find any reference on how to update that text dynamically. I am using some Python to read the file and launch
ffmpeg
with subprocess.I would like to ask if anyone knows some workaround for this. Maybe some other approach.
-
mmpeg changing the bitrate and file size of resulting file
17 août 2019, par Paco AbatoI’m using
ffmpeg
within a Python script (usingmmpeg-python
) in order to change metadata values but the bitrates and file size are also changed in the resulting video (bitrates are ’Velocidad de datos’ and ’Velocidad de bits’, sorry for non-english GUI) :The command I use is the following (removed the metadata part because the result is the same : the bitrate and the file size being changed) :
import ffmpeg
ifile = 'borrar.mp4'
ofile = 'res.mp4'
ffmpeg.input(ifile).output(ofile).run()How to preserve bitrates and so an aproximate file size.
Thanks in advance.