
Recherche avancée
Autres articles (63)
-
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 (...) -
Les formats acceptés
28 janvier 2010, parLes commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
ffmpeg -codecs ffmpeg -formats
Les format videos acceptés en entrée
Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
Les formats vidéos de sortie possibles
Dans un premier temps on (...)
Sur d’autres sites (7720)
-
Save StreamTitle tag in recording
29 décembre 2022, par jarnoSome streams have StreamTitle tag set and it changes from time to time. Is that information send only when it changes in the stream ? For example in this stream StreamTitle is used to tell the artist and the name of current song :


ffprobe -v error -show_entries format_tags http://st.downtime.fi/sun.mp3



Is the StreamTitle tag exclusive to MP3 streams ? Can one have it in Opus streams as well ?


Can such information be added to the output file created when recording the stream by
ffmpeg
for example, to be able to see which song is playing when playing the recording later ? Could another tag be used to tell program name which may also alter in time ?

-
ffmpeg-python outputs black screen when trying to save as mp4
3 mars 2023, par SayaThis is my code. I am trying to make a video out of all pictures in the
pics2
directory using ffmpeg.

import subprocess

command = 'ffmpeg -framerate 1 -i "pics2/Image%02d.png" -r 1 -vcodec libx264 -s 1280x720 -pix_fmt yuv420p Output.mp4'
p = subprocess.call(command, shell=True)



This saves an Output.mp4 successfully but the video has no frames (It is completely black)


How do I solve this ?


-
Can I save a matplotlib animation to webm format ?
19 septembre 2017, par Nikhil MahajanI am using this example code as a test case : https://matplotlib.org/examples/animation/moviewriter.html
In this code, they use FFMPEG to write the matplotlib animation to an .mp4 video file. Is it possible to write to a .webm format ?
But I am not sure how to go about doing this.