Recherche avancée

Médias (1)

Mot : - Tags -/biomaping

Autres articles (79)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

  • List of compatible distributions

    26 avril 2011, par

    The 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 (...)

Sur d’autres sites (11752)

  • How to produce Live video and audio streaming (not VoD) with ffmpeg ?

    22 novembre 2022, par Artem

    I want to produce a Live audio/video stream from local file.

    



    I tried the following :

    



    


    ffmpeg -re -thread_queue_size 4 -i source_video_file.ts -strict -2
 -vcodec copy -an -f rtp rtp ://localhost:10000 -acodec copy -vn -sdp_file saved_sdp_file -f rtp rtp ://localhost:20000

    


    



    and then :

    



    


    ffplay saved_sdp_file

    


    



    It seems to work fine, but it looks like a Video on Demand, cause I can replay this file with ffplay whenever I want.

    



    But I need ffplay to show video/audio only during ffmpeg streaming instance is running (the first command above).

    



    How do I achieve this ?

    



    Thanks !

    


  • Live Stream Android Screen

    27 janvier 2012, par salamis

    I would like to stream Android Screen using FFMPEG and MonkeyRunners(MonkeyImage)

    I found a good Tutorial for streaming your webcam using FFMPEG and video4linux2.

    Is it possible to send the bytes from the Monkeyrunner.MonkeyImage to the FFMPEG to be converted to a live video stream ?

    Actual code :

    $ffmpeg -f video4linux2 -i /dev/video0 http://78.47.18.19:8090/cam1.ffm

    Replace it with something similar to :

    $ffmpeg -f video4linux2 -i <add here="here" python="python" stream="stream"> http://78.47.18.19:8090/cam1.ffm
    </add>

    Any suggestions ?

  • NGinx RTMP live stream text overlay and play to multiple

    25 avril 2020, par chrisale

    I have been banging my head against this wall for a long time. Hoping you all can get me over.

    &#xA;&#xA;

    I have a live stream coming from an IP Camera to my computer.

    &#xA;&#xA;

    Nginx publishes to YouTube and to an FFmpeg stream that takes a frame every minute to use for a static webcam image.

    &#xA;&#xA;

    Here is the code with the exec_push that I've tried to use with no success. The YouTube stream and frame capture work fine. I have FFmpeg installed with freetype. This is all on MacOS X 10.15.4 Catalina with home-brew FFmpeg —HEAD installed.

    &#xA;&#xA;

    Update : I should also say I have tried outputting the overlay using command line FFmpeg and it works great with this command :

    &#xA;&#xA;

    /usr/local/bin/ffmpeg -i rtmp://localhost:1935/live/68.1. -vf drawtext="fontfile=/System/Library/Fonts/Supplemental/Arial.ttf:text=&#x27;Stack Overflow&#x27;: fontcolor=white: fontsize=24: box=1: boxcolor=black@0.5: boxborderw=5: x=(w-text_w)/2: y=(h-text_h)/2" /Users/user/Desktop/test.mp4&#xA;

    &#xA;&#xA;

    So it seems that the output portion is the part FFmpeg doesn't like in Nginx.conf

    &#xA;&#xA;

    My thought is I should be passing the overlayed FFmpeg stream to the "overlay" app and have the stream published to Youtube and the frame capture from there. (And also potentially recorded).

    &#xA;&#xA;

    Thanks so much !

    &#xA;&#xA;

    Chris

    &#xA;&#xA;

    rtmp {&#xA;server {&#xA;                listen 1935;&#xA;                chunk_size 4096;&#xA;&#xA;                application live {&#xA;                                    live on;&#xA;                                    record off;&#xA;                                    exec_static /usr/local/bin/ffmpeg -i rtmp://localhost:1935/live/68.1. -vf drawtext="fontfile=/System/Library/Fonts/Supplemental/Arial.ttf:text=&#x27;Stack Overflow&#x27;: fontcolor=white: fontsize=24: box=1: boxcolor=black@0.5: boxborderw=5: x=(w-text_w)/2: y=(h-text_h)/2" rtmp://localhost:1935/overlay/test;&#xA;                                    #push rtmp://localhost:1935/overlay;&#xA;                                    #exec ffmpeg -i rtmp://your_localhost_ip/live/test -crf 30 -preset ultrafast -acodec aac -strict experimental -ar 44100 -ac 2 -b:a 64k -vcodec libx264 -x264-params keyint=60:no-scenecut=1 -r 30 -b:v 500k -s 1280x720 -f flv rtmp://jp.pscp.tv:80/x/your_stream_key;&#xA;                }&#xA;&#xA;                application overlay {&#xA;                                    live on;&#xA;                                    record off;&#xA;                                    push rtmp://a.rtmp.youtube.com app=live2 playpath=yjsh-402y-xv3k-2qdj;&#xA;                                    exec_push /usr/local/bin/ffmpeg -i rtmp://localhost:1935/overlay/$name -vf fps=1/60 /Users/Shared/stream/netcam.jpg;&#xA;                }&#xA;&#xA;        }&#xA;&#xA;}&#xA;

    &#xA;