
Recherche avancée
Autres articles (91)
-
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Participer à sa traduction
10 avril 2011Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
Actuellement MediaSPIP n’est disponible qu’en français et (...)
Sur d’autres sites (22606)
-
Révision 20115 : fusion des inc/distant de la branche 2.1 et de la branche 3 ; ca permet de reven...
22 janvier 2013, par Fil Upau passage, ca reporte aussi [19231] (documents proteges, faussement distants) sur le trunk a noter : les modifications d’espaces et de tabulations, bien que effectivement ameliorant le source, produisent de nombreux diffs ’muets’ qu’il a fallu verifier un par un... au final une perte de temps (...)
-
want to stream mobile camera using ffserver and ffmpeg
6 janvier 2017, par Vinay PandyaFirst i will tell you my requirement than i will tell you what i have done.
i am noob in media streaming i am learning and i am very confused about it.
basically i want to do following thing
1 : mobile app will stream video on server through URL (which is on my laptop)
2 : My laptop should run ffserver/ffmpeg which store video stream which is coming from mobile app and allow other client to watch it (here i am talking about VLC as client).so this is my requirement.
i ham running ffserver on my laptop
my ff server config is like :
HTTPPort 8090
HTTPBindAddress 0.0.0.0
RTSPPort 8091
RTSPBindAddress 0.0.0.0
MaxHTTPConnections 2000
MaxClients 1000
MaxBandwidth 1000
CustomLog -
#NoDaemon
<feed>
File /tmp/feed1.ffm
FileMaxSize 200K
ACL allow 127.0.0.1
</feed>
# if you want to use mpegts format instead of flv
# then change "live.flv" to "live.ts"
# and also change "Format flv" to "Format mpegts"
<stream>
Format flv
Feed feed1.ffm
VideoCodec libx264
VideoFrameRate 30
VideoBitRate 512
VideoSize 320x240
AVOptionVideo crf 23
AVOptionVideo preset medium
# for more info on crf/preset options, type: x264 --help
AVOptionVideo flags +global_header
AudioCodec aac
Strict -2
AudioBitRate 128
AudioChannels 2
AudioSampleRate 44100
AVOptionAudio flags +global_header
</stream>
##################################################################
# Special streams
##################################################################
<stream>
Format status
# Only allow local people to get the status
ACL allow localhost
ACL allow 192.168.0.0 192.168.255.255
</stream>
# Redirect index.html to the appropriate site
<redirect>
URL http://www.ffmpeg.org/
</redirect>
##################################################################than i am adding following url to my mobile app to stream video.
rtsp ://:8091/feed1.ffm
my mobile app start streaming my mobile developer team said that.
but i am not getting any log on ffserver, when i am stooping streaming the TEARDOWN request is comming[TEARDOWN] "rtsp://192.168.1.57:8091/feed1.ffm RTSP/1.0" 200 7034
i have done this is so far, i dont know how to use ffmpeg with live streaming. please tell me some example for that.
i am not able to watch that live stream on VLC client. also tell me what URL should i enter in VLC for streaming i have tried almost every url combination.
and one more thing i want to do it with RTSP protocol.
i think this info will help you to understand my requirement.
-
Converting video to frames using ffmpeg
15 septembre 2015, par Alap ArslanI am using ffmpeg to convert video to frames by following command.
ffmpeg -i Input.MP4 -vf fps=1/5 img%03d.jpg
But i want to convert youtube video directly into frames. It gives error when i write like this.
ffmpeg -i www.youtube.com/watch?v=qT4hN5o57hI -vf fps=1/5 img%03d.jpg
please help me ?