
Recherche avancée
Autres articles (43)
-
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 (...) -
D’autres logiciels intéressants
12 avril 2011, parOn ne revendique pas d’être les seuls à faire ce que l’on fait ... et on ne revendique surtout pas d’être les meilleurs non plus ... Ce que l’on fait, on essaie juste de le faire bien, et de mieux en mieux...
La liste suivante correspond à des logiciels qui tendent peu ou prou à faire comme MediaSPIP ou que MediaSPIP tente peu ou prou à faire pareil, peu importe ...
On ne les connais pas, on ne les a pas essayé, mais vous pouvez peut être y jeter un coup d’oeil.
Videopress
Site Internet : (...) -
Supporting all media types
13 avril 2011, parUnlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)
Sur d’autres sites (11139)
-
Running Live streaming of local user using ffmpeg at Web plateform
23 décembre 2019, par Sneha MakwanaI am using below command to stream my live desktop screen.
ffmpeg -f x11grab -r 1 -loglevel panic -s `xdpyinfo | grep 'dimensions:'|awk '{print $2}'` -i $DISPLAY -qscale 0 -f mpegts udp://192.168.3.151:1111
udp ://192.168.3.151:1111 - this is my streaming URL
I can see live streaming in the parole media player (in Linux platform), but I can’t see this in a cross-network (i.e from windows PC - in the same network)
Is there any web platform so I can see my streaming from anywhere (either windows or linux) just using unique streaming URL or do I need to change my streaming command or method ?
Any help is much appreciated
-
How to create hls live playlist using mp4 file
4 mai 2019, par rustin peterI have a program that will create 10 second mp4 file every 6 seconds.
i want to convert that to .ts files and send all those .ts files to hls playlist file to do live stream. how to do that ?
-
FFmpeg drawtext filter - is it possible to use variables with live data for x,y coordinates ?
3 mai 2019, par DavidKI’d like to use variables for FFmpeg’s drawtext filter’s x,y coordinates so I can feed them with real-time data. The below solution with sendcmd works but I have to add relative timecodes at the beginnings so FFmpeg can link coordinates to time positions. Can it be done without timecodes with only the actual coordinates and tell FFmpeg that it should update these coordinates every 100ms ?
It would look like this in my case :
cmd.txt
drawtext reinit ’x=960:y=540’ ; (coordinates change when there’s a new position from the live source and FFmpeg updates these via sendcmd regularly).
Thanks !