
Recherche avancée
Médias (91)
-
Chuck D with Fine Arts Militia - No Meaning No
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Paul Westerberg - Looking Up in Heaven
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Le Tigre - Fake French
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Thievery Corporation - DC 3000
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Dan the Automator - Relaxation Spa Treatment
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Gilberto Gil - Oslodum
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (112)
-
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
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 (...) -
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 (11697)
-
(WinError 2) combining video (.mp4) and audio (.mp4) using Python ffmpeg
28 mai 2021, par LeonI'm new to using ffmpeg, and I'm trying to use ffmpeg to combine an audio only (.mp4 format) and a video only (also .mp4 format)


I've tried reinstall FFmpeg, ffmpeg, and ffmpeg-python :


import ffmpeg

def main():
 video_stream = ffmpeg.input('Video.mp4')
 audio_stream = ffmpeg.input('Audio.mp4')
 ffmpeg.output(audio_stream, video_stream, 'result.mp4').run()


if __name__ == "__main__":
 main() 



It returns me this error :


Traceback (most recent call last):
 File "C:\Users\leon\Downloads\Youtube_Project\Youtube_Combine.py", line 15, in <module>
 main()
 File "C:\Users\leon\Downloads\Youtube_Project\Youtube_Combine.py", line 11, in main
 ffmpeg.output(audio_stream, video_stream, 'result.mp4').run()
 File "C:\Users\leon\Downloads\Youtube_Project\venv\Downloads\lib\site-packages\ffmpeg\_run.py", line 313, in run
 process = run_async(
 File "C:\Users\leon\Downloads\Youtube_Project\venv\Downloads\lib\site-packages\ffmpeg\_run.py", line 284, in run_async
 return subprocess.Popen(
 File "C:\Users\leon\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 951, in __init__
 self._execute_child(args, executable, preexec_fn, close_fds,
 File "C:\Users\leon\AppData\Local\Programs\Python\Python39\lib\subprocess.py", line 1420, in _execute_child
 hp, ht, pid, tid = _winapi.CreateProcess(executable, args,
FileNotFoundError: [WinError 2] The system cannot find the file specified
</module>


-
Importing sub module of FFmpeg in Android
3 mars 2024, par M. Usman KhanI was able to import the "full" module of FFmpeg library in Android like this :


api 'com.arthenica:ffmpeg-kit-full:6.0-2'



But this was adding about 90mb to my app. So I tried to import only "min-gpl" like


api 'com.arthenica:ffmpeg-kit-min-gpl:6.0-2'



But instead of decreasing, this actually increased my app size further (about 100mb).


Am I not doing it right ?


-
Complex Text Animations with FFMPEG [closed]
5 novembre 2020, par Judah MeekI'm trying to figure out how the text animations used by https://storycreatorapp.com/demo (click on "text" on the left sidebar to view them) are created.


I understand that the drawtext filter usually is used to draw the text, but what filter is used to hide the text at the beginning of the text animation (most of the animations have text seemingly to slide out from nowhere right in the middle of the screen) ?