
Recherche avancée
Médias (91)
-
MediaSPIP Simple : futur thème graphique par défaut ?
26 septembre 2013, par
Mis à jour : Octobre 2013
Langue : français
Type : Video
-
avec chosen
13 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
sans chosen
13 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
config chosen
13 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
SPIP - plugins - embed code - Exemple
2 septembre 2013, par
Mis à jour : Septembre 2013
Langue : français
Type : Image
-
GetID3 - Bloc informations de fichiers
9 avril 2013, par
Mis à jour : Mai 2013
Langue : français
Type : Image
Autres articles (105)
-
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 (...) -
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 (...) -
Amélioration de la version de base
13 septembre 2013Jolie sélection multiple
Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)
Sur d’autres sites (10304)
-
How to convert a UDP stream to RTMP with FFmpeg ?
20 avril 2020, par John RiselvatoIt seems the webcam on a macOS streams data via MPEG files which works great with UDP but I want to use this stream for YouTube which only accepts RTMP. Here's what my script looks like based on the documentation :



$ ffmpeg -f avfoundation -framerate 30 -i "0" -f FLV "/"




Which Youtube indicates isn't getting any data from it. 
 have found some weird hack that actually lets me stream my webcam but it's totally non-traditional. If I stream loop an input (input.mp4) an infinite amount of times and apply a random filter, my webcam streams unaffected. I don't see input.mp4 nor is the hue applied to the webcam. It's totally strange.



$ ffmpeg -f avfoundation -framerate 30 -i "0" -stream_loop -1 -i input.mp4 -filter_complex "hue=H=0" -f FLV "$YOUTUBE_URL/$KEY"




So I'm thinking, it has to be a UDP issue and I just need a better way to convert the stream to RTMP. Any thoughts ?


-
How to convert a UDP stream to RTSP with FFmpeg ?
20 avril 2020, par John RiselvatoIt seems the webcam on a macOS streams data via MPEG files which works great with UDP but I want to use this stream for YouTube which only accepts RTSP. Here's what my script looks like based on the documentation :



$ ffmpeg -f avfoundation -framerate 30 -i "0" -f FLV "/"




Which Youtube indicates isn't getting any data from it. 
 have found some weird hack that actually lets me stream my webcam but it's totally non-traditional. If I stream loop an input (input.mp4) an infinite amount of times and apply a random filter, my webcam streams unaffected. I don't see input.mp4 nor is the hue applied to the webcam. It's totally strange.



$ ffmpeg -f avfoundation -framerate 30 -i "0" -stream_loop -1 -i input.mp4 -filter_complex "hue=H=0" -f FLV "$YOUTUBE_URL/$KEY"




So I'm thinking, it has to be a UDP issue and I just need a better way to convert the stream to RTSP. Any thoughts ?


-
Liquidsoap bootstrap failing on CentOS
17 mai 2014, par LiamI have recently been trying to build liquidsoap from its source, it was going great till now, I am pretty sure that I have all the codecs/libs installed that are required but yet when I run
./bootstrap
it throws the following error on many of the ocaml packages*** bootstrapping ocaml-ffmpeg
m4/pkg_config.m4:47: error: m4_defn: undefined macro: _m4_divert_diversion
m4/pkg_config.m4:47: the top level
autom4te: /usr/bin/m4 failed with exit status: 1
aclocal: autom4te failed with exit status: 1
configure.ac:6: error: possibly undefined macro: AC_BASE_CHECKS
If this token and others are legitimate, please use m4_pattern_allow.
See the Autoconf documentation.
configure.ac:9: error: possibly undefined macro: PKG_CONFIG_CHECK_MODULE
autoreconf: /usr/bin/autoconf failed with exit status: 1Have tried google the errors but it is all just a dead end for me, if any one here actually knows what the error is and a possible fix that would be great