Recherche avancée

Médias (1)

Mot : - Tags -/biographie

Autres articles (108)

  • 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" ;

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

  • Revision 104611 : Si une condition est mise sur un champ renvoyant un tableau (checkbox ...

    23 mai 2017, par kent1@… — Log

    Si une condition est mise sur un champ renvoyant un tableau (checkbox multiples par exemple), elle fonctionnait en js mais pas en PHP (le champ était vidé).
    Du coup on en profite aussi pour gérer IN et !IN au même titre que == et != (au moins sur les checkbox pour le moment)
    Mais c’est vraiment pas joli (usage d’eval() assez intensif)
    Version 2.18.16

  • ffmpeg : How do I accept inputs from other programs ? [on hold]

    18 mai 2017, par B Hok
    @echo off
    for %%a in (*.mp3) DO ffmpeg -i "%%a" -f image2 -loop 1 -r 30 -i img.png -shortest -c:a copy -c:v libx264 -crf 23 -preset veryfast -vf scale=1280:720 -pix_fmt yuv420p "%%a.mp4"
    pause

    This code at the moment loops everything in the folder and combines the mp3 with img.png into a mp4. However, I want the GUI supply the inputs instead. How do I do that ?

  • ffmpeg stream rc buffer underflow

    5 août 2015, par finder2

    At the moment I’m setting up a screen-sharing platform with the opensource tool ffmpeg / ffserver. At the beginning of the sharing everything is fine. After around 1 1/2 minutes I get the following exception in the output.

    [flv @ 0x3a47aa0] rc buffer underflow
    [flv @ 0x3a47aa0] max bitrate possibly too small or try trellis with large lmax or increase qmax

    I’ve tried to set an verry high lmax & qmax but this hasn’t changed any thing.Additionally I’ve tried to increase the bitrate , the buffersize and the bitrate.

    I use the following command with ffmpeg :

    ffmpeg -f x11grab -s 1920x1080 -r 20 -i :0.0+1680,0 "http://localserver.de:8080/input1.ffm"

    The config file for the ffserver is :

    HTTPPort 8080
    HTTPBindAddress 0.0.0.0
    MaxHTTPConnections 2000
    MaxClients 1000
    MaxBandwidth 50000
    CustomLog -

    <feed>
     File /var/ffserver/input1.ffm
     FileMaxSize 20M
     ACL allow *FROM IP*  *TO IP*
    </feed>

    <stream>
     Feed input1.ffm
     Format swf
     VideoCodec flv
     VideoFrameRate 20
     VideoBufferSize 8000
     VideoBitRate 250
     VideoQMin 1
     VideoQMax 5
     VideoSize 640x400
     PreRoll 0
     StartSendOnKey
     NoAudio
    </stream>

    An other streaming format would also be a possibility but I didn’t know which are possible for live-streaming.

    Thanks in advanced

    efinder2