
Recherche avancée
Médias (39)
-
Stereo master soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
ED-ME-5 1-DVD
11 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
1,000,000
27 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Demon Seed
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Four of Us are Dying
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Corona Radiata
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (20)
-
Contribute to translation
13 avril 2011You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
MediaSPIP is currently available in French and English (...) -
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 (...) -
Submit bugs and patches
13 avril 2011Unfortunately a software is never perfect.
If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
You may also (...)
Sur d’autres sites (5695)
-
python3.6 ffmpeg call MacOSX (closed)
30 mai 2020, par AwazleonI'm using Python 3.6 on MacOSX. I would like to use FFmpeg as Python sub-process. Everything works fine when using the OSX embedded Python 2.7 but using 3.6, this doesn't work.



I get an error message because it doesn't find FFmepg :



raise FFExecutableNotFoundError("Executable '{0}' not found".format(self.executable))
ffmpy.FFExecutableNotFoundError: Executable 'ffmpeg' not found




I tried with ffmpy but I also got the same result by invoking FFmpeg directly :



>>> from subprocess import call
>>> call(["ffmpeg"])
Traceback (most recent call last):
 File "", line 1, in <module>
 call(["ffmpeg"])
 File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/subprocess.py", line 267, in call
 with Popen(*popenargs, **kwargs) as p:
 File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/subprocess.py", line 707, in __init__
 restore_signals, start_new_session)
 File "/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/subprocess.py", line 1326, in _execute_child
 raise child_exception_type(errno_num, err_msg)
FileNotFoundError: [Errno 2] No such file or directory: 'ffmpeg'
</module>



I installed the FFmpeg lib. by using Brew through Terminal. It was well installed but only visible by Python 2.7, not 3.6.



Calling it from terminal is working :



$ ffmpeg

ffmpeg version 3.2.4 Copyright (c) 2000-2017 the FFmpeg developers built with Apple LLVM version 8.0.0 (clang-800.0.42.1)
configuration: --prefix=/usr/local/Cellar/ffmpeg/3.2.4 --enable-shared --enable-pthreads --enable-gpl --enable-version3 --enable-hardcoded-tables --enable-avresample --cc=clang --host-cflags= --host-ldflags= --enable-libmp3lame --enable-libx264 --enable-libxvid --enable-opencl --disable-lzma --enable-vda




I'm not (yet) a Linux specialist but I think that a path is missing for 3.6 to find FFmpeg.



Any clue to solve this annoying issue ?


-
Cocoa pods did not found compatible version while doing pod install using ffmpeg-kit
3 septembre 2022, par Pascal MusaI’m trying to pod install in react-native using an m1 MacBook Air . First I used Ffmpeg for react -native is superseded. So I use react-native fffmpeg- kit bun when trying to run pod install the terminal tells me that cocoa pods could not find compatible versions for pod mobile-ffmpeg. enter image description here


-
Batch process all files in folder with ffmpeg ?
19 novembre 2019, par AronI am trying to create a loop that will process all .mp4 (gopro clips) in a folder, and output each converted file with the same filename as the original + the _r suffix. I puzzled together the below from various sources but can’t get it to work.
for i in *.mp4; do ffmpeg -i "$i" -vf "hflip,vflip" "${i%.*}_r.mp4"; done
Running the above gives the following error.
*.mp4: No such file or directory
What have I done wrong ?
Yes, I am in the correct directory, and there are .mp4 files in in place.
Ffmpeg is installed and runs correctly.
Working in Mac terminal.