
Recherche avancée
Médias (5)
-
ED-ME-5 1-DVD
11 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
Revolution of Open-source and film making towards open film making
6 octobre 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
-
Valkaama DVD Cover Outside
4 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
Valkaama DVD Label
4 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Image
-
Valkaama DVD Cover Inside
4 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
Autres articles (97)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
ANNEXE : Les plugins utilisés spécifiquement pour la ferme
5 mars 2010, parLe site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)
-
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir
Sur d’autres sites (10067)
-
avformat/apm : use the entire APMState structure as extradata
7 juillet 2020, par Zane van Iperen -
how to use ffmpegs's afir in ffmpeg-python
7 décembre 2023, par NireMy goal is to slow down a file and add reverberation using python


here's my code :


import ffmpeg

audio = ffmpeg.input(r'test_files\Gorillaz - Rhinestone Eyes.mp3').audio
audio = audio.filter('rubberband', tempo=0.8, pitch=0.8, pitchq='quality')
# audio = audio.filter('afir', )
output = ffmpeg.output(audio, r'final\test.mp3', format='mp3', audio_bitrate=320_000)
ffmpeg.run(output)



the problem is that I don't know how to properly use afir filter in ffmpeg-python syntax, I tried doing it by hand in command prompt and succeed, but in python it gives me errors


I tried to find information about my problem on the internet, but failed. And also I tried asking chatgpt about all this, but it didn't help either.


-
FFMPEG - 60fps to 30fps with burn in in one line
23 juillet 2021, par OliCIve been trying to get this work for a little while now and I think im just lacking some knowledge in something.


I am basically trying to convert a 60fps video down to 30fps and burn in timecode all at the same time.


So far I have


ffmpeg -y -r 60 -i IN.mov -pix_fmt yuv420p -timecode 10:03:13:27 -filter:v fps=30 -vf "[in]drawtext=fontfile='C\:/Windows/Fonts/arial.ttf': timecode='10\:03\:13\:27':timecode_rate=30:x=((w-text_w)/2)/3:y=((h-text_h)-h)+text_h:fontsize=24:fontcolor=white:box=1:boxcolor=black:boxborderw=5[out]" -r 30 OUT.mov



I convert the 60 fps tc to 30 by hand for some of the values (eventually move this into python)


It all seems to work fine until you take a look at the burn in which seems to be counting at 30 but counting up in 2's. I can tell its something to do with the 60/30 conversion as obviously we are halving the frames. Im really trying to avoid multiple calls and 'temp' files.


If anyone could talk me through what im doing wrong and educate me a little that would be awesome


Thanks in advance guys