Recherche avancée

Médias (2)

Mot : - Tags -/plugins

Autres articles (76)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

Sur d’autres sites (9278)

  • How to setup ffmpeg to read data from pipe permanently ?

    12 août 2018, par roxioam

    I have the following args for mmpeg :
    -y -f rawvideo -vcodec rawvideo -pixel_format rgba -colorspace bt709 -video_size 1280x720 -i - -vcodec libx264 -preset ultrafast -tune zerolatency -f flv -listen 1 rtmp://127.0.0.1 - ffmpeg is waiting for incoming connections. If nobody is connected to the ffmpeg then ffmpeg doesn’t read data from pipe and my data source is hanging. How to say ffmpeg to read data from pipe permanently even without connected clients ?

  • enabling Mpeg 4 data partitioning option

    20 janvier 2014, par user3214780

    Is there any option to enable data partitioning available in MPEG-4 codec in libavcodec of FFMPEG.

    I currently used "-data_partitioning = 1" with ffmpeg commands. Is this doing data partitioning ??

  • How is decoded audio data stored in ffmpeg AVFrame ?

    23 février 2023, par necrosato

    I'm looking for clarification on how ffmpeg stores decoded audio data in frames before I start writing code to do audio mixing. AVFrame has int format and uint8_t* data[] members. If my understanding is correct, then the bytes in data should be cast to the proper type for format before working with it. So to do a simple 2x level boost if format == AV_SAMPLE_FMT_S16, I would :

    



    int16_t* audio_samples = frame->data[0];
int num_samples = frame->nb_samples * frame->channels;
for (int i = 0; i < num_samples; ++i) {
  audio_samples[i] = audio_samples[i] * 2;
}


    



    Is this the correct way of going about things ?