
Recherche avancée
Médias (91)
-
Les Miserables
9 décembre 2019, par
Mis à jour : Décembre 2019
Langue : français
Type : Textuel
-
VideoHandle
8 novembre 2019, par
Mis à jour : Novembre 2019
Langue : français
Type : Video
-
Somos millones 1
21 juillet 2014, par
Mis à jour : Juin 2015
Langue : français
Type : Video
-
Un test - mauritanie
3 avril 2014, par
Mis à jour : Avril 2014
Langue : français
Type : Textuel
-
Pourquoi Obama lit il mes mails ?
4 février 2014, par
Mis à jour : Février 2014
Langue : français
-
IMG 0222
6 octobre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Image
Autres articles (55)
-
Mise à disposition des fichiers
14 avril 2011, parPar défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...) -
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 (...) -
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...)
Sur d’autres sites (6888)
-
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 !