Recherche avancée

Médias (1)

Mot : - Tags -/ogg

Autres articles (98)

  • MediaSPIP Core : La Configuration

    9 novembre 2010, par

    MediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
    Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...)

  • MediaSPIP Player : problèmes potentiels

    22 février 2011, par

    Le lecteur ne fonctionne pas sur Internet Explorer
    Sur Internet Explorer (8 et 7 au moins), le plugin utilise le lecteur Flash flowplayer pour lire vidéos et son. Si le lecteur ne semble pas fonctionner, cela peut venir de la configuration du mod_deflate d’Apache.
    Si dans la configuration de ce module Apache vous avez une ligne qui ressemble à la suivante, essayez de la supprimer ou de la commenter pour voir si le lecteur fonctionne correctement : /** * GeSHi (C) 2004 - 2007 Nigel McNie, (...)

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

Sur d’autres sites (8270)

  • dxa : only fail with an error about reference frames if the reference frame would...

    17 août 2013, par Michael Niedermayer
    dxa : only fail with an error about reference frames if the reference frame would be used
    

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavcodec/dxa.c
  • av_interleaved_write_frame() unknown error when streaming WebM

    16 avril 2015, par user1475135

    I’m following a guide to live WebM streaming through FFMpeg / FFServer and running into an interesting error. I have tried using a DirectShow webcam source, and also an existing WebM (finite length) video using -vcodec copy. Initially, both will manage to connect to the FFServer (I can see the POST 200 OKs to /feed1.ffm), and maybe even send a frame or two, but then FFMpeg crashes with av_interleaved_write_frame(): Unknown error. (Meanwhile, FFServer appears to be fine.)

    This appears to be an unusual variant of the error - normally it’s more common to get, say, av_interleaved_write_frame(): I/O error (which indicates file corruption). Has anyone seen this error, and better yet, can anyone tell me how to fix it ?


    FFMpeg commands

    • ffmpeg -re -i univac.webm -vcodec copy -acodec copy -f webm http://[my server]/feed1.ffm
    • ffmpeg -f dshow -i video="[my dshow source]" -f webm http://[my server]/feed1.ffm

    FFserver command

    ffserver -f ffserver.conf

    ffserver.conf

    This is only a slight variation in the one provided in the aforementioned guide.

    Port 8080  
    BindAddress 0.0.0.0
    MaxHTTPConnections 2000
    MaxClients 5
    # MaxBandwidth 10000
    CustomLog -
    NoDaemon  

    <feed>      
      File ./feed1.ffm  
      FileMaxSize 1G  
      ACL allow [IP of the machine with ffmpeg]  
    </feed>

    <stream>
      Feed feed1.ffm    
      Format webm

      # Audio settings
      AudioCodec vorbis
      AudioBitRate 64  

      # Video settings
      VideoCodec libvpx
      VideoSize 640x480
      VideoFrameRate 30
      AVOptionVideo flags +global_header
      AVOptionVideo cpu-used 0
      AVOptionVideo qmin 10
      AVOptionVideo qmax 42
      AVOptionVideo quality good
      AVOptionAudio flags +global_header
      VideoBitRate 400

      # Streaming settings
      PreRoll 15
      StartSendOnKey
    </stream>

    FFserver logs

    avserver version 0.8.6-6:0.8.6-1ubuntu2, Copyright (c) 2000-2013 the Libav developers

    built on Mar 30 2013 with gcc 4.7.2

    AVserver started

    [current time] - [GET] "/feed1.ffm HTTP/1.1" 200 4149

    [current time] - [POST] "/feed1.ffm HTTP/1.1" 200 4096

  • h264_ps : Use more meaningful error values

    19 août 2013, par Diego Biurrun
    h264_ps : Use more meaningful error values
    
    • [DBH] libavcodec/h264_ps.c