Recherche avancée

Médias (1)

Mot : - Tags -/swfupload

Autres articles (111)

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

  • Installation en mode ferme

    4 février 2011, par

    Le mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
    C’est la méthode que nous utilisons sur cette même plateforme.
    L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
    Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...)

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

Sur d’autres sites (8906)

  • vp8/mt : flush worker thread, not application thread context, on seek.

    11 juillet 2011, par Ronald S. Bultje

    vp8/mt : flush worker thread, not application thread context, on seek.

  • Bad audio quality with electron FFmpeg live streaming application [closed]

    5 janvier 2021, par Vivek Thumar

    Getting bad audio quality with electron FFmpeg live streaming app. (It's not the frequent ratio is around 10 good and 1 bad quality).

    


    From the command line, it's not happened but when tried inside electron it's happened.

    


    I tried with too many things

    


    #1 Check with all FFmpeg versions.
    
#2 Increase memory allocation of electron app.
    
#3 Check with multiple electron versions.

    


  • FFMpeg Out of sync audio/video in iOS application

    28 juillet 2016, par yogbd

    The app saves the camera output into a mov. file, then turn it to flv format that sent by AVPacket to rtmp server.
    It switch every time between two files, one is written by the camera output and the other one is sent.
    My problem is that the audio/video is getting out of sync after a while.

    The first buffer sent is allways 100% sync but after awhile it get messed.
    I belive its a DTS-PTS problem..

    if(isVideo)
    {
       packet->stream_index = VIDEO_STREAM;
      packet->dts = packet->pts = videoPosition;
       videoPosition += packet->duration = FLV_TIMEBASE * packet->duration * videoCodec->ticks_per_frame * videoCodec->time_base.num / videoCodec->time_base.den;

    }
    else
    {
       packet->stream_index = AUDIO_STREAM;
       packet->dts = packet->pts = audioPosition;
       audioPosition += packet->duration = FLV_TIMEBASE * packet->duration / audioRate;

      //NSLog(@"audio position = %lld", audioPosition);
    }

    packet->pos = -1;
    packet->convergence_duration = AV_NOPTS_VALUE;

    // This sometimes fails without being a critical error, so no exception is raised
    if((code = av_interleaved_write_frame(file, packet)))
    {
       NSLog(@"Streamer::Couldn't write frame");
    }
    av_free_packet(packet);