
Recherche avancée
Médias (1)
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
Autres articles (93)
-
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. -
Qu’est ce qu’un éditorial
21 juin 2013, parEcrivez votre de point de vue dans un article. Celui-ci sera rangé dans une rubrique prévue à cet effet.
Un éditorial est un article de type texte uniquement. Il a pour objectif de ranger les points de vue dans une rubrique dédiée. Un seul éditorial est placé à la une en page d’accueil. Pour consulter les précédents, consultez la rubrique dédiée.
Vous pouvez personnaliser le formulaire de création d’un éditorial.
Formulaire de création d’un éditorial Dans le cas d’un document de type éditorial, les (...) -
Contribute to translation
13 avril 2011You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
MediaSPIP is currently available in French and English (...)
Sur d’autres sites (6859)
-
How to close live streaming red5 server command in shell from php
20 décembre 2016, par vibhor GuptaI have live streaming ffmpeg decode streaming streamed to client using red5 server to user browser.
Now the problem is i have to run the ffmpeg command in ubantu server shell which keeps on streaming constantly to the user .
So my problem is how to stop this live stream when user request .Environment :
PHP version 5.5.9
ffmpeg version 3.2.2
Ubuntu 14.04.5 LTSThe php script I use to execute the shell command is :
$cmd = 'ffmpeg -i rtsp://user:12345@192.168.101.101/Streaming/Channels/101 -f flv -an rtmp://192.168.1.105/live/livestream/1.mp4' ;
shell_exec($cmd);The above script never ends so i get the live streaming but if i place any other http request during the live streaming the server puts the request in queue and does not process any other request until the live streaming is closed .
So how can i handle this condition is there any other function in php .
-
ffmpeg how to start encoding at live point (not from beginning)
9 avril 2021, par JintorIs there a way with ffmpeg to start encoding at "live point" (in other words at last encoded frame...)


let met explain : 2 ffmpeg process


[1] x11grab that is being generated that started a 2:00 pm.... and still continue live (I don't want to stop and continue encoding live)


[2] restream the [1] but at live point (at where it is encoding now) not from start...


If [2] is being triggered at 2:15 pm, it will load the first frame of [1] (start to encode from 2pm)


but I want that it load the last few frames of [1] as a starting point (2:15pm)...


I know that I could
ffmpeg -i -ss
but I have to specify a x number of seconds after-ss
...

is there a better way ?


-
Streaming jpegs live to iphone app
14 février 2012, par RavenIm progressing through taking the depth camera feed from my kinect and streaming it to my iphone app. I have got to stage of being able save jpegs for every frame created from the kinect depth image (30 fps) and save them to the local disk. I have than been able to convert this to mpeg with ffmpeg.
My question is now how can I view this live on my iphone ? Basically I want to view it live on the iphone as you are seeing it coming from the kinect.
Should I use http live streaming and use the segmenter to use apples HttpLiveStreaming functionality ? Or can I stream the raw jpeg image files up in some way as they are saved to disk and than just cycle the images on the phone as they go ?
Im wondering how video conferencing is achieved on the iphone (facetime/skype etc) ? because I'd prefer that it wasnt played inside the video player, just want to display live content on the screen as it happens.
Any ideas ? Thanks in advance