
Recherche avancée
Médias (91)
-
Spoon - Revenge !
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
My Morning Jacket - One Big Holiday
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Zap Mama - Wadidyusay ?
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
David Byrne - My Fair Lady
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Beastie Boys - Now Get Busy
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Granite de l’Aber Ildut
9 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
Autres articles (58)
-
List of compatible distributions
26 avril 2011, parThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...) -
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 (...) -
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)
Sur d’autres sites (8181)
-
Revision a82c58c40f : Change vp8_intra4x4_predict call sites Use the _d variant from the decoder. It
31 juillet 2012, par JohannChanged Paths : Modify /vp8/common/arm/armv6/intra4x4_predict_v6.asm Modify /vp8/encoder/encodeintra.c Modify /vp8/encoder/pickinter.c Modify /vp8/encoder/rdopt.c Change vp8_intra4x4_predict call sites Use the _d variant from the decoder. It moves the pointer calculations to the caller. (...)
-
Can you call out to FFMPEG in a Firebase Cloud Function
27 juillet 2024, par Dave ParksPer the Firebase Cloud Functions documentation, you can leverage ImageMagick from within a cloud function : https://firebase.google.com/docs/functions/use-cases



Is it possible do something similar but call out to FFMPEG instead of ImageMagick ? While thumbnailing images is great, I'd also like the capability to append incoming images to a video file stored out on Firebase Storage.


-
Windows : subprocess.call ffmpeg triggers a WinError 2
15 juillet 2020, par JarsOfJam-SchedulerIn Pycharm, I have correctly set up an environment with ffmpeg : the project interpreter C :\Users\XYZ\AppData\Local\Programs\Python\Python37\python.exe contains, among others, the package ffmpeg. I can see that in the menu Settings then Project then Project Interpreter.


I would want to use this environment when I execute the following command, so ffmpeg will be found and execute correctly :


subprocess.call(
 ['ffmpeg', '-i', 'XYZ/XYZ.webm', '-stream_loop', '-1', '-i', 'XYZ/XYZ.wav',
 '-c:v', 'copy', '-shortest', '-fflags', '+shortest', '-max_interleave_delta', '100M',
 'XYZ/XYZ.webm']
 , cwd='C:/Users/XYZ/Desktop/ytg2/')



For the moment, however, the following error is triggered :




Traceback (most recent call last) : File
"C :/Users/XYZ/Desktop/ytg2/main.py", line 497, in 
, cwd='C :/Users/XYZ/Desktop/ytg2/') File "C :\Users\XYZ\AppData\Local\Programs\Python\Python37\lib\subprocess.py",
line 323, in call
with Popen(*popenargs, **kwargs) as p : File "C :\Users\XYZ\AppData\Local\Programs\Python\Python37\lib\subprocess.py",
line 775, in init
restore_signals, start_new_session) File "C :\Users\XYZ\AppData\Local\Programs\Python\Python37\lib\subprocess.py",
line 1178, in _execute_child
startupinfo) FileNotFoundError : [WinError 2] Le fichier spécifié est introuvable


Process finished with exit code 1




What should I do ?