Recherche avancée

Médias (17)

Mot : - Tags -/wired

Autres articles (81)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • MediaSPIP Player : problèmes potentiels

    22 février 2011, par

    Le lecteur ne fonctionne pas sur Internet Explorer
    Sur Internet Explorer (8 et 7 au moins), le plugin utilise le lecteur Flash flowplayer pour lire vidéos et son. Si le lecteur ne semble pas fonctionner, cela peut venir de la configuration du mod_deflate d’Apache.
    Si dans la configuration de ce module Apache vous avez une ligne qui ressemble à la suivante, essayez de la supprimer ou de la commenter pour voir si le lecteur fonctionne correctement : /** * GeSHi (C) 2004 - 2007 Nigel McNie, (...)

Sur d’autres sites (8501)

  • 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 ?