
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 (74)
-
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 (...) -
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...)
Sur d’autres sites (8278)
-
Terminal output text into pandas dataframe without creating external file
23 février 2018, par helmoI am using ffmpeg’s extract_mvs file to generate some text information. I would use a command like this in the terminal :
/extract_mvs input.mp4 > output.txt
I would like to use this command with
Popen
or other subprocess in python such that instead of output.txt, the data is passed straight to a pandas data frame without actually generating the text file.The idea is to automate this multiple times, so, I am trying to avoid many .txt files from being generated and thus having to
open()
them one by one.I thought of something like this :
import subprocess
cmd = ['./extract_mvs', 'input.mp4']
a = subprocess.Popen(cmd, stdout=subprocess.PIPE)
df = pd.read_csv(a.communicate()[0], sep=',')But then I get an error :
OSError: Expected file path name or file-like object, got <class> type</class>
Can it be fixed and extended so as to read straight from subprocess to pandas ?
-
Displaying text overlay on a video in certain period of time using FFmpeg
20 janvier 2021, par zahra_oveyedzadebased on asked questions and available guides, it is obvious how to add text overlay on a video by using FFmpeg.
The question is, is it possible to define in which time period the text be displayed and after that be deleted ?
suppose we have a movie with 33 minutes long and it is wanted to display text in time 5:01 min until time 7 min.
Is there any way ?


Thank you


-
How to map pixel or point units to ffmpeg font / text size
17 août 2020, par RehanI have a web page form where I take text size in pixel or point units pass to ffmpeg and run ffmpeg command to set text size but they don't match. what is the ffmpeg text size standard unit or is there any way I can convert pixels or units into ffmpeg text size so they don't differ.