Recherche avancée

Médias (1)

Mot : - Tags -/iphone

Autres articles (67)

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette 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.

Sur d’autres sites (8770)

  • How to use ffmpeg to extract WAVE_FORMAT_GSM610 file to WAVE_FORMAT_PCM file

    26 juillet 2017, par xuejianbest

    I have a compressed audio file that is WAVE_FORMAT_GSM610 format.

    Now I want to open it with python wave module. But wave module only support WAVE_FORMAT_PCM file.

    I setup ffmpeg tools. What command can I use to complete this conversion ?

    Or Is there good way to complete the task ?

    Thinks.

  • nginx push rtmp stream to ffmpeg

    1er janvier 2021, par vicmortelmans

    On my Raspberry Pi with camera module, I try to setup a web-based streaming platform. I want to preview the stream in my browser and use CGI scripts to start/stop broadcasting to youtube (,...).

    


    This is how I did the streaming setup so far :

    


    enter image description here

    


    Nginx puts up an RTMP application webcam. This is where I'll send the camera and audio stream usig ffmpeg. It publishes the stream as HLS for the web preview. It's also pushing the stream to another application source. That's where I want to (occasionally) hook up another ffmpeg process for broadcasting to youtube (,...) RTMP end points.

    


    I initiate the stream using ffmpeg like this :

    


    ffmpeg -loglevel debug -f v4l2 -framerate 15 -video_size 1280x720 -input_format h264 -i /dev/video0 -f alsa -i hw:2 -codec:v copy -g 15 -codec:a aac -b:a 128k -ar 44100 -strict experimental -f flv "rtmp://localhost:1935/webcam/hhart"


    


    So far everything works fine. I can preview the HLS stream using a video.js viewer on my website (also served by nginx).

    


    Now I want to start another ffmpeg process for broadcasting to my youtube channel, hooked up to the source application like this :

    


    ffmpeg -loglevel debug -f flv -listen 1 -i rtmp://localhost:1935/source/hhart -c copy &#x27;rtmp://a.rtmp.youtube.com/live2/<key>&#x27;&#xA;</key>

    &#xA;

    (in the final setup, launching and killing this process will be done via CGI scripts)

    &#xA;

    This is what ffmpeg returns :

    &#xA;

    Opening an input file: rtmp://localhost:1935/source/hhart.&#xA;[flv @ 0x2032480] Opening &#x27;rtmp://localhost:1935/source/hhart&#x27; for reading&#xA;[rtmp @ 0x2032a10] No default whitelist set&#xA;[tcp @ 0x20330f0] No default whitelist set&#xA;

    &#xA;

    and then... nothing happens. There's no stream coming in at Youtube studio, but there are no error messages either.

    &#xA;

    Some other tests I did :

    &#xA;

      &#xA;
    1. from the webcam application, push directly to the Youtube RTMP => that works ! (but it's not what I want, because I want the HLS stream to be online always, but the broadcasting only when I'm going live.)

      &#xA;

    2. &#xA;

    3. from VLC display the stream at rtmp://localhost:1935/source/hhart => similar to ffmpeg, there's no error message, the progress bar keeps loading.

      &#xA;

    4. &#xA;

    &#xA;

    So I have the impression that there is something going on, but there's no actual data transmitted.

    &#xA;

    RTMP section in nginx.conf :

    &#xA;

    rtmp {                                                                     &#xA;    server {                                                               &#xA;        listen 1935;                                                       &#xA;        chunk_size 4000;                                                   &#xA;                                                                           &#xA;        application webcam {                                               &#xA;            live on;                                                       &#xA;            hls on;                                                        &#xA;            hls_path /Services/Webcam/HLSStream;                           &#xA;            hls_fragment 3;                                                &#xA;            hls_playlist_length 60;                                        &#xA;            #deny play all;                                                 &#xA;            push rtmp://localhost:1935/source/;                            &#xA;            #push rtmp://a.rtmp.youtube.com/live2/<key>;&#xA;        }                                                                  &#xA;                                                                           &#xA;        application source {                                               &#xA;            live on;                                                       &#xA;            record off;                                                    &#xA;        }                                                                  &#xA;    }                                                                      &#xA;}                                                                          &#xA;</key>

    &#xA;

    Of course, I may be totally on the wrong track, so any suggestions how I can realize my requirements in a better way, are welcome !

    &#xA;

  • How can you run an exe as with no window, in the background and being the most efficient use of resources ? [closed]

    18 mars 2013, par Covenant Spokane

    I don't understand the way the windows totally functions so forgive the novice question.

    I want to setup a server running a video processing peogram called FFMpeg. The server will be used at an time to run that command line program in as many instances that the server can handle. I don't want the server to have 100 command windows open while its processing. Can an exe be run as a process or service or something so that it runs without a window and is as efficient as possible.