Recherche avancée

Médias (29)

Mot : - Tags -/Musique

Autres articles (71)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Mise à disposition des fichiers

    14 avril 2011, par

    Par défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
    Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
    Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

Sur d’autres sites (5416)

  • Workaround for webbrowsers buffering live webm streams and introducing a delay (how to play live webm stream)

    8 juillet 2014, par CoryG

    I have webm streams coming from an ffserver (16 streams), managed to get all 16 to load at once within a browser, but whether I am playing just one or 16 there is a delay of 3-5 seconds introduced due to either buffering or the handshake plus some kind of compensation to try and sync the timestamps by the browser itself, which leads to my question :

    Is it possible to force a browser playing a webm stream via HTML5’s video tag (I only really care about Chrome, but it’s happening in Firefox too) to play from the actual most recent frame (clients and servers share a common NTP server over the LAN, so they are guaranteed to be synced, if that is a factor) as opposed to maintaining a buffer of several seconds and playing from the start of that buffer ?

  • live stream with ffmpeg and IP camera

    23 octobre 2013, par hamilton.lima

    I'm reading a live stream from a DKSEG IP camera, but the results are not good at all ...

    Here is the command line used for this :

    ./ffmpeg -i "http://192.168.0.29/videostream.asf?user=admin&pwd=&resolution=64&rate=0" -vcodec libx264 -r 30 -s 640x480 -threads 2 -vprofile baseline -vpre zoom -strict experimental -acodec aac -ab 96000 -ar 48000 -ac 1  -f rtsp rtsp://xxx.xxx.xxx.xxx:1935/live/_definst_/c3

    the zoom.ffpreset :

    coder=1
    level=31
    maxrate=1200000
    bufsize=200000
    wpredp=0
    g=60
    refs=1
    subq=3
    trellis=0
    bf=0
    rc_lookahead=0

    Even when I save to a mp4 file the results are not good, with some gaps in the video.

    Any toughts ? suggestions ?

  • FFMPEG : Queue input is backward in time & invalid, clipping issue [on hold]

    22 octobre 2013, par Sai

    I am using FFMPEG to convert the following video from wmv to flv and getting errors.

    Command is

    ffmpeg -i Sample.wmv  -qscale 0 -s 472x314 -ar 22050 -ac 1 -ab 96k  -g 5 Sample.flv

    I am getting these errors

    [libmp3lame @ 000000000030b640] Queue input is backward in time
    [flv @ 00000000003e6b20] st:0 PTS: 560 DTS: 560 < 577 invalid, clipping

    Although the file is getting converted from the command line. Conversion is being interrupted after integrating with my application.

    And the video size is 300MB

    Any idea why these errors were coming ?