Recherche avancée

Médias (1)

Mot : - Tags -/illustrator

Autres articles (111)

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

Sur d’autres sites (3934)

  • how to apply video filter in ffserver live streaming

    28 mai 2015, par Razack

    We are live streaming from camera in to ffserver through ffmpeg. We are converting the live streaming into side by side (SBS) using ffmpeg stereo3d filter. we have no problem getting the required output directly playing in MPlayer. When we stream through FFServer into a player what we get is not side by side but a single.
    ffmpeg -i source.mp4 -vf stereo3d=sbsl:abl http://x.x.x.x:8090/feed1.ffm
    Thanks for your help

  • Live Streaming App iOS

    23 août 2016, par Jay Gajjar

    I am trying to develop a live-streaming application like the meerkat app, where user A can broadcast a live stream while other users are able to watch it. I am having trouble understanding the architecture and mechanisms used to upload video to a server. Currently, I am using a dedicated server with FFMPEG installed on it. I also know FFServer can be used to perform RTSP communication, but I am still unclear how to do this. Can anyone guide me on this ?

    I would like to know how to upload videos to a server or whether there is another way to perform a live stream. Open source frameworks are welcome.

  • FFmpeg Live streaming, capture card avisynth/graphedit

    19 décembre 2013, par diegonaranjo

    I´m stuck in a problem with a test doing multicast streaming from a Viewcast Osprey 700e HD using ffmpeg.
    The thing is that I´ve to use avisynth(with graphedit) for ffmpeg recognize the card. The streaming has no ending time,
    is a live channel for IPTV.
    The script is working well, but the problem is the avisynth config, because I have to specify the countframe option,
    i think this is for the duration of the clip, but I need an infinity streaming.

    The is script is :

    ffmpeg -i espnhd.avs -rtbufsize 100000k -r 30 -c:v mpeg2video -b:v 5120k -s 1280x720 -g 100 -q:v 2 -c:a ac3 -b:a 256k -f mpegts udp ://239.192.42.61:1234

    The espnhd.avs file is :

    v=directshowsource("espnhdv.GRF", pixel_type="YUV", framecount=1000000, fps=30, audio=False, convertfps=false)
    A=directshowsource("espnhda.GRF", fps=30, framecount=1000000, video=False, convertfps=false)
    AudioDub(V, A)
    loop()

    When i run the application, work fine but the streaming ends when 1000000 frames it´s encoded...
    If i dont specify framecount, ffmpeg doesn´t start with the following error, can´t determine the duration of the clip.

    Is there any way to specify an inifinity duration on avisynth ?

    The streaming stops at 1:57hs. I took the end fo the logs :

    frame=212014 fps= 30 q=4.0 size= 6957018kB time=01:57:54.13 bitrate=8056.4kbits/s dup=0 drop=211
    frame=212029 fps= 30 q=4.0 size= 6958383kB time=01:57:54.64 bitrate=8057.4kbits/s dup=0 drop=211
    frame=212044 fps= 30 q=4.0 size= 6959504kB time=01:57:55.13 bitrate=8058.1kbits/s dup=0 drop=211
    frame=212060 fps= 30 q=4.0 size= 6960692kB time=01:57:55.66 bitrate=8058.9kbits/s dup=0 drop=211
    espnhd.avs: Not enough space
    [output stream 0:0 @ 02f02220] EOF on sink link output stream 0:0:default.
    [output stream 0:1 @ 02f10c20] EOF on sink link output stream 0:1:default.
    No more output streams to write to, finishing.
    frame=212069 fps= 30 q=4.0 Lsize= 6961519kB time=01:57:56.00 bitrate=8059.5kbits/s dup=0 drop=211

    video:6196482kB audio:221125kB subtitle:0 global headers:0kB muxing overhead 8.475312%
    424560 frames successfully decoded, 0 decoding errors
    [AVIOContext @ 02f8c3e0] Statistics: 0 seeks, 4977161 writeouts
    [AVIOContext @ 02f032a0] Statistics: 229 bytes read, 0 seeks

    I really appreciate some help.
    Thanks.