Recherche avancée

Médias (91)

Autres articles (35)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

  • Dépôt de média et thèmes par FTP

    31 mai 2013, par

    L’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
    Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...)

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

Sur d’autres sites (2796)

  • sidxindex : Don’t adjust the Period start time depending on the track start time

    28 novembre 2014, par Martin Storsjö
    sidxindex : Don’t adjust the Period start time depending on the track start time
    

    This was only necessary to get playback to start with dash.js 1.2.0,
    it has been fixed in the git version.

    The previous behaviour was incorrect - the Period’s start time
    is irrespective of the actual first timestamp of the contents
    within the period. The Period start time only says when, within the
    global timeline, this particular piece should start to be played
    back.

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DH] tools/sidxindex.c
  • Protocol for streaming : From a client to the server

    30 décembre 2015, par the-owner

    Context : I work in C++ with msvc2013 win32, QT-IDE, ffmpeg.

    I am looking for a protocol in order to stream video from the server to client and mostly from client to the server (two-way). On the server side, there is a tcp protocol already implemented (with QTcp).

    Question :
    For the server to client, obviously there is the RTP protocole (which is a derived UDP protocol), but for streaming into the inverse way, is there a protocol for streaming (images/video) where the client (as a client) could send a (live)stream to the server ? And is it possible (and easy) to implement this protocol under FFMPEG or QT ? (with a avformat_alloc_output_context2() for example)

    Otherwise, if FFMPEG or QT are not enough for doing this task : Is there a library that can do that under Visual-C++ Win32 ?

  • C# Audio Streaming (server to client)

    19 décembre 2020, par Denev

    I am using a translator.

    &#xA;

    I want to make a live streaming music player (UDP) using c#.

    &#xA;

      &#xA;
    1. Load an audio file from my computer (server) and play it.
    2. &#xA;

    3. The client connects to the server and listens to the music currently playing on the server, and displays metadata on the client program screen.
    4. &#xA;

    &#xA;

    The important part is that the client cannot control the playback timing and must receive it from the server unilaterally and play it. (Like twitch live streaming)

    &#xA;

    Is it possible to split the audio file into a buffer and send it, and the client receives it and plays it as audio in real-time ?

    &#xA;

    It looks like it's possible with FFmpeg, but I couldn't find any tutorials or examples for my level.

    &#xA;

    Thank you.

    &#xA;