Recherche avancée

Médias (91)

Autres articles (111)

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

  • La sauvegarde automatique de canaux SPIP

    1er avril 2010, par

    Dans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
    Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...)

Sur d’autres sites (9359)

  • ffserver Error writing frame to output

    28 mars 2014, par GarciaPL

    I am new to ffmpeg and ffserver. I spent a lot of time to stream the .avi file using ffserver. Below is my config.

    Port 8090                      # Port to bind the server to
    BindAddress 0.0.0.0
    MaxHTTPConnections 2000
    MaxClients 1000
    MaxBandwidth 10000             # Maximum bandwidth per client
                                  # set this high enough to exceed stream bitrate
    CustomLog -
    NoDaemon                       # Remove this if you want FFserver to daemonize after start

    RTSPPort 7654
    RTSPBindAddress 0.0.0.0

    <feed>               # This is the input feed where FFmpeg will send
      File ./feed1.ffm            # video stream.
      FileMaxSize 1G              # Maximum file size for buffering video
      ACL allow 127.0.0.1
      ACL allow 192.168.0.0 192.168.0.255
    </feed>

    <stream>
       Format avi
       Feed feed1.ffm

       VideoCodec libvpx
       VideoFrameRate 30
       VideoBitRate 800
       VideoSize 720x576

       AudioCodec aac
       Strict -2
       AudioBitRate 128
       AudioChannels 2
       AudioSampleRate 44100
       AVOptionAudio flags +global_header
    </stream>

    <stream>            # Server status URL
      Format status
      ACL allow localhost          
      ACL allow 192.168.0.0 192.168.255.255
    </stream>

    <redirect>    # Just an URL redirect for index, Redirect index.html to the appropriate site
      URL http://www.ffmpeg.org/
    </redirect>

    So, to start my ffserver I use this command :

    ffserver -d -f ffserver.conf

    and after that I start stream of this avi file using ffmpeg :

    ffmpeg -re -i russian.avi -c:v libx264 -loop 1 http://192.168.1.165:8090/feed1.ffm

    unfortunately I received two errors repeated many of times :

    Too large number of skipped frames 60120709615 > 60000
    Error writing frame to output

    I searched the entire internet....but I found nothing what would be valuable.

  • What might be the cause of ffmpeg JPG->MP4 stopping before the last input file ?

    22 décembre 2019, par ChrisJJ

    Here’s the output showing 2177 frames converted https://i.imgur.com/VP4M7Zl.png. It is ignoring the further 1000-odd frames in the input set.

    There’s nothing unusual AFAICS about input JPG 2177.

    What might cause this ? Where should I look for more info ?

  • How to generate stereo sine wave using FFMPEG ?

    1er janvier 2020, par John Doe

    I’m trying to generate a stereo sine wave using FFMPEG (batch file), but have a different frequency for left and right. So far I have this :

    ffmpeg -f lavfi -i "sine=frequency=1000:duration=60" -ac 2 "binaural.wav"

    But it creates the same frequency for both left and right.
    Is this possible ?