
Recherche avancée
Autres articles (70)
-
Modifier la date de publication
21 juin 2013, parComment changer la date de publication d’un média ?
Il faut au préalable rajouter un champ "Date de publication" dans le masque de formulaire adéquat :
Administrer > Configuration des masques de formulaires > Sélectionner "Un média"
Dans la rubrique "Champs à ajouter, cocher "Date de publication "
Cliquer en bas de la page sur Enregistrer -
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...) -
Configurer la prise en compte des langues
15 novembre 2010, parAccéder à la configuration et ajouter des langues prises en compte
Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)
Sur d’autres sites (6129)
-
Ubuntu running .sh file - no such a directory or file
19 novembre 2013, par user3008028I am new to ubuntu/linux.
I try to follow this tutorial : http://www.roman10.net/how-to-build-ffmpeg-with-ndk-r9/
When running bash file on step 3 I receive 'no such a directory or file' even though the directory does exists.
-
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.
-
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.