
Recherche avancée
Autres articles (99)
-
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 (...) -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
MediaSPIP Player : problèmes potentiels
22 février 2011, parLe lecteur ne fonctionne pas sur Internet Explorer
Sur Internet Explorer (8 et 7 au moins), le plugin utilise le lecteur Flash flowplayer pour lire vidéos et son. Si le lecteur ne semble pas fonctionner, cela peut venir de la configuration du mod_deflate d’Apache.
Si dans la configuration de ce module Apache vous avez une ligne qui ressemble à la suivante, essayez de la supprimer ou de la commenter pour voir si le lecteur fonctionne correctement : /** * GeSHi (C) 2004 - 2007 Nigel McNie, (...)
Sur d’autres sites (9791)
-
Create RTMP stream from website via Linux command line
13 octobre 2020, par Chris P. BaconI have a webpage with video and audio that I would like to relay through an RTMP stream. This would preferably happen via command line on a Linux machine.


I know FFMPEG can be used to create RTMP streams and I know it can be used to capture the screen, but I don't know if it has all the features I want.


Is it even possible to capture a webpage with audio from the command line ?
If so, how should I output this to RTMP ?


Thanks !


-
ffmpeg -vg -filtercomplex, create gif with color kway and limited fps
3 février 2020, par danielI need to create a gif file with color key (greenscreen) with 10FPS and specified size. I try to combine -vg and -filter_complex :
ffmpeg -i testdatei-c.avi -vf "fps=10,scale=320:-1:flags=lanczos" -filter_complex "[0:v]chromakey=0xFFFFFF,split[v0][v1];[v0]palettegen[p];[v1][p]paletteuse" output.gif
I get the error :
Filtergraph 'fps=10,scale=320:-1:flags=lanczos' was specified through the -vf/-af/-filter option for output stream 0:0, which is fed from a complex filtergraph.
-vf/-af/-filter and -filter_complex cannot be used together for the same stream. -
Avconv command to combine image and audio file (to create a video)
22 février 2015, par RollingStone1234Trying to perform a simple task : combine an image file with an audio file to create a video. I’ve already found a few examples using ffmpeg, but I’m using a cloud-based PythonAnywhere and they only use avconv.
Code would look something like this :
import os
image_file = "/dir/greenfrog.jpg"
audio_file = "/dir/AudioFile.wav"
output_file = "/dir/VideoFile.mp4"
cmd = xxxxx
os.system(cmd)How should I write the cmd string to combine the two files ? Thanks for your help here...