
Recherche avancée
Autres articles (94)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
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 -
MediaSPIP Player : problèmes potentiels
22 février 2011, parLe 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 (16127)
-
lavfi : add opencl tonemap filter
19 juin 2018, par Ruiling Songlavfi : add opencl tonemap filter
This filter does HDR(HDR10/HLG) to SDR conversion with tone-mapping.
An example command to use this filter with vaapi codecs :
FFMPEG -init_hw_device vaapi=va :/dev/dri/renderD128 -init_hw_device \
opencl=ocl@va -hwaccel vaapi -hwaccel_device va -hwaccel_output_format \
vaapi -i INPUT -filter_hw_device ocl -filter_complex \
'[0:v]hwmap,tonemap_opencl=t=bt2020:tonemap=linear:format=p010[x1] ; \
[x1]hwmap=derive_device=vaapi:reverse=1' -c:v hevc_vaapi -profile 2 OUTPUTSigned-off-by : Ruiling Song <ruiling.song@intel.com>
-
avformat/http: dont fail with unknown Content-Encodings
26 octobre 2013, par Michael Niedermayeravformat/http: dont fail with unknown Content-Encodings
Fixes : http://m1.file.xiami.com/282/23282/343749/1769075752_709488_l.mp3
Based-on-patch-by : Crossle Song <sxm@yixia.com>
Signed-off-by : Michael Niedermayer <michaelni@gmx.at> -
Isolating/separating vocals from audio by FFMPEG
21 février 2023, par JonyI remove the vocals from music via


ffmpeg -i song.mp3 -af pan="stereo|c0=c0|c1=-1*c1" -ac 1 karaoke.mp3


The output is the music without vocals (not completely but fairly good).


I wonder what is the command to make the output separated vocals (vocal only) ?


I mean how to save the separated vocals in an audio file ?


I mean how to save the separated vocals in an audio file ?
I want to remove only instrumental music without vocal from audio file by ffmpeg.
Please someone help me.