
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 (59)
-
Déploiements possibles
31 janvier 2010, parDeux types de déploiements sont envisageable dépendant de deux aspects : La méthode d’installation envisagée (en standalone ou en ferme) ; Le nombre d’encodages journaliers et la fréquentation envisagés ;
L’encodage de vidéos est un processus lourd consommant énormément de ressources système (CPU et RAM), il est nécessaire de prendre tout cela en considération. Ce système n’est donc possible que sur un ou plusieurs serveurs dédiés.
Version mono serveur
La version mono serveur consiste à n’utiliser qu’une (...) -
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 (...) -
Gestion des droits de création et d’édition des objets
8 février 2011, parPar défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;
Sur d’autres sites (7964)
-
Why am I getting an error of "No module named 'YouTube_dl'", but the module is installed ?
14 septembre 2022, par Harshul Nanda -
Connecting ffmpeg java module to named pipe
27 novembre 2019, par Ehsan5I want to extract the output of folowing ffmpeg Module with the help of Named pipe. I am currently having problems with communication of ffmpeg and named pipe, but thank you for explaining how to extract stream bytes from output named pipe and convert it to images.
My code gives socket connection error when using named pipe. I have used method that suggested in ffmpeg main page (pipe:0 for input and pipe:1 for output) but because it is not named pipe I cannot use it in the client side. It should be noted that named pipe is opened successfully with jna win32 module.
This is server side code(but i tested it with
\\.\pipe\PIPE
also) :FFmpegBuilder builder = new FFmpegBuilder()
.setInput(input.getPath())
.addOutput(" -f avi pipe:1 ")
.addExtraArgs(videoFilterStr)
.done();
UUID caller = UUID.randomUUID();
try {FFmpegHelper.builder().progressListener().build().run(builder, caller)... -
ImportError : No module named 'pydub'
28 janvier, par ensmingerI am creating a simple script that will use
pydub
to fetch files from a directory based on their name, then stitch a few of them together and export the result.


I had the script working great in a Windows environment (Win 7, python 3.4), but now I'm trying to run on OSX.



I have installed all necessary components -
ffmpeg
,libav
. I have just installedpydub
withpip
, pulling directly from github.


My file starts with the input statement
from pydub import AudioSegment
, and this is what I get :


Traceback (most recent call last):
 File "functions.py", line 2, in <module>
 from pydub import AudioSegment
ImportError: No module named 'pydub'
</module>



Thoughts ? What am I missing ? Any help is greatly appreciated !