
Recherche avancée
Autres articles (100)
-
List of compatible distributions
26 avril 2011, parThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...) -
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 -
Activation de l’inscription des visiteurs
12 avril 2011, parIl est également possible d’activer l’inscription des visiteurs ce qui permettra à tout un chacun d’ouvrir soit même un compte sur le canal en question dans le cadre de projets ouverts par exemple.
Pour ce faire, il suffit d’aller dans l’espace de configuration du site en choisissant le sous menus "Gestion des utilisateurs". Le premier formulaire visible correspond à cette fonctionnalité.
Par défaut, MediaSPIP a créé lors de son initialisation un élément de menu dans le menu du haut de la page menant (...)
Sur d’autres sites (8692)
-
RTSP Live Streaming in iOS
19 février 2015, par Ashok LondheHow to create Live Streaming ip camera using RTSP Protocol. To connect to ip Camera use ip address of camera , Username and Password.
if anyone know how to do it please give the solution.i have search more then i understand ios not directly support the RTSP Live streaming so that first RTSP is Converted into Http Streaming.
OR
use ffmpeg Library but i don’t know how to use it.Thanks in Advance...!!!
-
How Can I capture and record a live stream using ffmpeg ? (Without any encoding or transcoding)
25 février 2015, par Sina DavaniHow Can I capture and record a live stream using ffmpeg ? (Without any encoding or transcoding)
I have a program written using ffmpeg. It captures a live stream and then plays it on the display (a simple video player).
What I need now is the ability to save the input stream in a file on the disk so it could be played later using a standard video player.
Can anyone please give me a simple example that would show how it is done ? When I am writing the captured packets from the input stream directly in to a file ; at the end the file is corrupted and it is unusable. I did try to set the header for the file ; but that didn’t work either. -
ffmpeg generated media segments dont work for http-live-streaming
13 mars 2015, par MacmeeI’m using this command :
ffmpeg -i temp/B8B147C1-509A-4DB1-BDE3-0DD659A62D16.mp4 -acodec aac -strict experimental -vcodec libx264 -f mpegts pipe:1
and my playlist looks something like :
#EXT-X-VERSION:3
#EXTM3U
#EXT-X-TARGETDURATION:10
#EXT-X-MEDIA-SEQUENCE:1
#EXTINF:4.5,
http://localhost:3008/stream/B8B147C1-509A-4DB1-BDE3-0DD659A62D16.ts
#EXT-X-ENDLISTThis works perfectly fine in VLC but not in itunes or iOS Safari. The video refuses to play. I need to be able to generate the .ts files from ffmpeg - cam I using the wrong encoding anywhere ?