Recherche avancée

Médias (91)

Autres articles (55)

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

  • libavformat/hls : use local var url for log to avoid crash

    19 octobre 2020, par bevis
    libavformat/hls : use local var url for log to avoid crash
    

    During operation, the user exits and interrupts,
    causing pls->segment to be released,
    resulting in a null pointer crash

    Signed-off-by : bevis <javashu2012@gmail.com>
    Signed-off-by : Steven Liu <lq@chinaffmpeg.org>

    • [DH] libavformat/hls.c
  • iOS local host RTMP server

    16 septembre 2020, par estoril

    I have been tasked with creating an iPad application, iOS 12.3 latest support, to run as a local RTMP server. Purpose being, external devices connect to this local RTMP server on iOS iPad, either via the iPad's wifi connection or enabled hotspot, and playback the display of external devices (mirror) onto the iPad.

    &#xA;

    I have been successful with creating a local host HTTP server, but upon connecting with external devices the local server on the iPad quits.

    &#xA;

    I will be using open source software for decoding and playback of video feed such as vlc or ffmpeg, but need guidance on an iPhone local host implementation, such as https://github.com/sallar/mac-local-rtmp-server for a mac.

    &#xA;

    Any help would be greatly appreciated !

    &#xA;

  • How to use AVPacket as local variable(or said temporary variable)

    27 août 2020, par pango

    my program receive a aac audio stream from net,and use ffmpeg to decode the stream,so I must pack the stream data to a AVPacket struct,I use a local variable to do this, the code like below :

    &#xA;

    bool OnRecvAACStream(const char * audioDataPtr,int audioDataSize,int64_t tBeg,int64_t tDura)&#xA;{&#xA;    AVPacket pkt_tmp;   // local varible&#xA;    av_init_packet(&amp;pkt_tmp);&#xA;    pkt_tmp.data = audioDataPtr;&#xA;    pkt_tmp.size = audioDataSize;&#xA;    pkt_tmp.pts = tBeg;&#xA;    pkt_tmp.duration = tDura;&#xA;    &#xA;    if (avcodec_send_packet(m_codec_ctx, &amp;pkt_tmp) &lt; 0)&#xA;    {&#xA;        assert(false);&#xA;        return false;&#xA;    }&#xA;    while (avcodec_receive_frame(m_codec_ctx, m_dec_frame) == 0)&#xA;    {&#xA;       // read out dec audio data&#xA;       ...&#xA;    }&#xA;    &#xA;    retur true;&#xA;}&#xA;&#xA;

    &#xA;

    I just use av_init_packet() to init the local varible, av_packet_unref() and av_packet_free() are not called,so is it valid ? is there any memory leak problem ?

    &#xA;