
Recherche avancée
Médias (3)
-
The Slip - Artworks
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
-
Podcasting Legal guide
16 mai 2011, par
Mis à jour : Mai 2011
Langue : English
Type : Texte
-
Creativecommons informational flyer
16 mai 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (107)
-
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 (...) -
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela. -
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.
Sur d’autres sites (12545)
-
How do I use ffmpeg on linux for my discord music bot ?
7 mars 2023, par DioI made a discord music bot a while back for me and my friends to use(it is minimalistic), but I recently switched from windows to Linux. I was using FFMPEG for my bot(the .exe file was in the same folder as the code).
I'll leave the Github link to my bot down here :


https://github.com/Dorian1997/Discord-Bot


Now my question is, do I have an alternative to FFMPEG on Linux ? Or how exactly should I install FFMPEG for it to work right ? I already installed it from the terminal, yet it doesn't seem to work as the bot cannot play anything.
Thank you for your time !


-
Error creating folder based on file name in ffmpeg
18 janvier 2023, par user21008368I've been trying to convert multiple videos into image stacks using ffmpeg. I would like to convert multiple videos at once, and export all the images from one video into a new folder, named after the video.


I've found the following code from a previous question, but I can't get it to work on my computer (I'm using a mac).


@echo off for %%i in (*.mp4) do (if not exist "%%~ni\" MD "%%~ni" ffmpeg -i "%%i" -vf fps=1/1800 "%%~ni\%%~ni_%%d.jpeg")


I keep getting the error


parse error near
%%i`

I think this is probably a syntax error, but I'm relatively new to using ffmpeg and working in the terminal.


-
rtl_fm stream with ffmpeg and low bandwith
13 février 2019, par Felix BäderI currently try to stream audio from rtl_fm via ffmpeg to node-media-server.
This is working fine.
rtl_fm -f 103.0M -M fm -s 44.1k -A std -l 1 -g 40 |
ffmpeg -f s16le -ac 1 -i pipe:0 -f flv rtmp://192.168.178.42/live/loremBut :
The I want to listen to the signal from the frequency e.g. 83.0M and the bandwith (-s) is set to 20k.Now the streamed audio is to fast. The audio sounds like pitched up and the terminal output of ffmpeg for speed is about 0.5x instead of 1x.
How can i stream this frequency with a bandwith of 20k without getting a bad output ?