Recherche avancée

Médias (0)

Mot : - Tags -/configuration

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (111)

  • (Dés)Activation de fonctionnalités (plugins)

    18 février 2011, par

    Pour gérer l’ajout et la suppression de fonctionnalités supplémentaires (ou plugins), MediaSPIP utilise à partir de la version 0.2 SVP.
    SVP permet l’activation facile de plugins depuis l’espace de configuration de MediaSPIP.
    Pour y accéder, il suffit de se rendre dans l’espace de configuration puis de se rendre sur la page "Gestion des plugins".
    MediaSPIP est fourni par défaut avec l’ensemble des plugins dits "compatibles", ils ont été testés et intégrés afin de fonctionner parfaitement avec chaque (...)

  • Le plugin : Podcasts.

    14 juillet 2010, par

    Le problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
    Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
    Types de fichiers supportés dans les flux
    Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)

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

Sur d’autres sites (7403)

  • avfilter/af_sofalizer : speed and clean up fast convolution a little

    9 janvier 2017, par Paul B Mahol
    avfilter/af_sofalizer : speed and clean up fast convolution a little
    

    Signed-off-by : Paul B Mahol <onemda@gmail.com>

    • [DH] libavfilter/af_sofalizer.c
  • ffmpeg output speed writing to udp vs fifo on ec2 linux

    20 janvier 2017, par art vanderlay

    I would like to find an approach to measure the speed of ffmpeg writing output to udp vs fifo.

    For this case it would be video + audio.

    Is there a internal timing method available to do such a measurement ?

    Is there a prevailing agreement that one approach is known to be faster than the other.

    Thx
    Art

  • Howto speed up Video Streaming with ffserver and ffmpeg + x265

    30 mars 2016, par binaryCode

    Below my ffserver.conf :

    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

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

    <stream>                       # Output stream URL definition
     Feed feed1.ffm              # Feed from which to receive video
     Format matroska

     # Audio settings
     AudioCodec vorbis
     AudioBitRate 64             # Audio bitrate

     # Video settings
     VideoCodec libx265
     VideoSize 720x576           # Video resolution
     VideoFrameRate 25           # Video FPS
     AVOptionVideo flags +global_header  # Parameters passed to encoder
                                      # (same as ffmpeg command-line  parameters)
     #AVOptionVideo cpu-used 0
     AVOptionVideo qmin 10
     AVOptionVideo qmax 42
     #AVOptionVideo quality good
     AVOptionAudio flags +global_header
     PreRoll 15
     StartSendOnKey
     VideoBitRate 400            # Video bitrate
    </stream>

    <stream>                    # Server status URL
      Format status
      # Only allow local people to get the status
      ACL allow localhost
     ACL allow 0.0.0.0
    </stream>

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

    and below is ffmpeg command to send my usb camera :

    c:\ffmpeg\bin\ffmpeg -f dshow -i video="A4TECH USB2.0 PC Camera"  -r 25 -s 320x240 -vcodec libx265 -preset ultrafast -tune zerolatency  http://119.81.216.43:8090/feed1.ffm

    ffmpeg running from my notebook with processor corei7 from Indonesia, and ffserver using ubuntu 14.x on ibm soflayer singapore,

    with above configuration i can play video streaming with 4s delay

    myquestion : howto improve speed so i can play video less than or equal 1 second, any idea ?