Recherche avancée

Médias (0)

Mot : - Tags -/formulaire

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (100)

  • Les vidéos

    21 avril 2011, par

    Comme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
    Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
    Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • 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

Sur d’autres sites (9985)

  • avcodec/libaom : fix setting amount of threads

    13 septembre 2018, par James Almer
    avcodec/libaom : fix setting amount of threads
    

    The libaom doxy says that a value of 0 for the threads fields is
    equivalent to a value of 1, whereas for avctx->thread_count it means
    the maximum amount of threads possible for the host system.

    Use av_cpu_count() to get the correct thread count when auto threads
    is requested.

    Reviewed-by : Jan Ekström <jeebjp@gmail.com>
    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavcodec/libaomdec.c
    • [DH] libavcodec/libaomenc.c
  • How to stream Opus stream from Discord to RTP

    16 août 2018, par qxu21

    I’m using a Node.JS Discord bot to stream a voice call over RTP. Currently, in my speaking event handler, I have

    var cmd = child_process.spawn("ffmpeg", [
             '-protocol_whitelist', 'file,crypto,sdp,rtp,udp,pipe,opus',
             '-re',
             '-acodec', 'opus',
             '-i', '-',
             '-ar', '8000',
             '-acodec', 'pcm_mulaw',
             '-f', 'mulaw',
             '-f', 'rtp',
             `rtp://${rtp_ip}:${rtp_port}`]);
    reciever.createOpusStream(user).pipe(cmd.stdin);

    equivalent to running the ffmpeg command ffmpeg -protocol_whitelist file,crypto,sdp,rtp,udp,pipe,opus -re acodec opus -i - -ar 8000 -acodec pcm_mulaw -f mulaw -f rtp rtp://${rtp_ip}:${rtp_port}

    Variations of this command produce errors ranging from pipe:: Invalid input or pipe:: Invalid argument to Invalid data on input. to

    [mp3 @ 0x5615decebe60] Format mp3 detected only with low score of 1, misdetection possible!
    [mp3 @ 0x5615decebe60] Failed to read frame size: Could not seek to 16101.

    Could anyone help me with sending a ReadableStream (opus) to an RTP mulaw stream ? Thanks !

  • FFmpeg eq filter equivalen valuet for css filter

    27 juillet 2018, par Praveen Tamil

    I’m showing the image with css filter applied in browser to how the output will be look like after processing.

    But the css filter accept the value in form of percent for contrast, brightness, saturation.
    But the ffmpeg’s eq filter is totally different and even more gamma params are used.

    I applied following filter in browser side

    filter: brightness(50%) contrast(100%) saturate(100%);
    filter: brightness(100%) contrast(100%) saturate(50%);
    filter: brightness(120%) contrast(100%) saturate(125%);

    I don’t how to do mapping these values to FFmpeg eq filter.

    I know below is the default code

    eq=contrast=1:brightness=0:saturation=1:gamma=1:gamma_r=1:gamma_g=1:gamma_b=1:gamma_weight=1

    I need equivalent value of FFmpeg’s eq filter for above mentioned CSS filters.
    And mapping value from CSS filter to eq filter.

    css filter ref : https://www.w3schools.com/cssref/css3_pr_filter.asp