Recherche avancée

Médias (1)

Mot : - Tags -/ogg

Autres articles (16)

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

  • Demande de création d’un canal

    12 mars 2010, par

    En fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
    Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...)

  • Installation en mode ferme

    4 février 2011, par

    Le mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
    C’est la méthode que nous utilisons sur cette même plateforme.
    L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
    Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...)

Sur d’autres sites (3628)

  • FFMPEG - Flaky internet for streaming, fallback stream or image

    15 juillet 2016, par jonathan tan

    I am using NGINX to receive rtmp and output to hls.

    rtmp {
       server {
           listen 1935;
           ...
           application rtmp {
               live on;
               ...
               exec ffmpeg -re -i rtmp://127.0.0.1/rtmp/$name -threads 1 -c:a aac -ac 1 -strict -2 -b:a 64k -c:v libx264 -profile:v baseline -g 10 -b:v 300K -s 480x240 -f flv rtmp://127.0.0.1/hls/$name;
           }
           application hls {
               live on;
               hls on;
               hls_path /tmp/hls;
               ...
           }
       }
    }

    My stream comes from Flash Media Live Encoder. But sometimes I have flaky internet because my connection comes from mobile. Sometimes internet drops for 3-5 seconds every 5 minutes. But this is enough to disrupt the stream. Is it possible for me to make it run continuously even when my FMLE is disconnected ?

    I am thinking of executing an FFMPEG from the server box to stream continuously an image as a fallback when FMLE is disconnected, then combine the 2 RTMP streams. Perhaps favoring the one from FMLE if available, and the other as fallback. But I am not sure how to combine using FFMPEG.

    Or is there another hack I can try ?

  • Why does recoding video with FFMPEG on Windows always give an error ?

    13 février 2016, par ALexF

    I downloaded ffmpeg from http://ramiro.arrozcru.org/ffmpeg-vfwcap-noflip.7z
    and run it with the command line : ffmpeg -r 25 -f vfwcap -i 0 output.avi

    but always get the error :

    ffmpeg -r 25 -f vfwcap -i 0 output.avi
    FFmpeg version SVN-r22915, Copyright (c) 2000-2010 the FFmpeg developers
    built on Apr 20 2010 00:09:08 with gcc 4.4.2
    configuration : —enable-memalign-hack —cross-prefix=i686-mingw32- —cc=ccach
    -i686-mingw32-gcc —arch=i686 —target-os=mingw32 —enable-gpl —enable-libx264
    —enable-pthreads
    libavutil 50.14. 0 / 50.14. 0
    libavcodec 52.66. 0 / 52.66. 0
    libavformat 52.61. 0 / 52.61. 0
    libavdevice 52. 2. 0 / 52. 2. 0
    libswscale 0.10. 0 / 0.10. 0
    [vfwcap @ 012eba60]Could not connect to device.
    0 : Error number -19 occurred

    Why doesn’t this work ?

  • Does ffmpeg version 0.5 configured on linux support encoding using Theora codec ?

    2 août 2012, par goldenmean

    I have configured, compiled a FFmpeg source code version 0.5 with versions as below :

    FFmpeg version 0.5, Copyright (c) 2000-2009 Fabrice Bellard, et al.
     configuration: --enable-memalign-hack
     libavutil     49.15. 0 / 49.15. 0
     libavcodec    52.20. 0 / 52.20. 0
     libavformat   52.31. 0 / 52.31. 0
     libavdevice   52. 1. 0 / 52. 1. 0

    on a linux host.

    When I try to encode a raw yuv video using this version using theora codec by giving options as :

    ffmpeg -f rawvideo -pix_fmt yuv420p -s 352x288 -r 30 -i foreman_352_x280_420.yuv -an -vcodec libtheora theora1.ogg

    It gives an error : Unknown encoder 'libtheora'

    But when i use the same command in a FFmpeg windows executable ( whose version is FFmpeg version SVN-r12665) it encoded to a theora video properly.

    1. Doesnt ffmpeg version 0.5 on linux support theora encoder ?
    2. Which version for linux setup,would support theora encoding ?