
Recherche avancée
Autres articles (100)
-
Les vidéos
21 avril 2011, parComme 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, parCertains 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 2013Puis-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 Almeravcodec/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> -
How to stream Opus stream from Discord to RTP
16 août 2018, par qxu21I’m using a Node.JS Discord bot to stream a voice call over RTP. Currently, in my
speaking
event handler, I havevar 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
orpipe:: Invalid argument
toInvalid 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 TamilI’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