
Recherche avancée
Médias (91)
-
999,999
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Slip - Artworks
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
-
Demon seed (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
The four of us are dying (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Corona radiata (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Lights in the sky (wav version)
26 septembre 2011, par
Mis à jour : Avril 2013
Langue : English
Type : Audio
Autres articles (104)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Use, discuss, criticize
13 avril 2011, parTalk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
A discussion list is available for all exchanges between users. -
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.
Sur d’autres sites (7424)
-
avfilter/vf_dedot : Fix leak of AVFrame if making it writable fails
9 février 2020, par Andreas Rheinhardtavfilter/vf_dedot : Fix leak of AVFrame if making it writable fails
Even in this scenario, the frame still contains references to data that
won't be freed if the frame isn't unreferenced. And the AVFrame itself
will leak, too.Fixes Coverity issue #1441422.
Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
Reviewed-by : Paul B Mahol <onemda@gmail.com>
Signed-off-by : Michael Niedermayer <michael@niedermayer.cc> -
FATE : Add test for libavfilter/scale2ref
4 juin 2017, par Kevin MarkFATE : Add test for libavfilter/scale2ref
This new FATE test for the scale2ref filter makes use of the recently
added scale2ref-specific variables to maintain the aspect ratio of a
test input.Filtergraph explanation :
[main] has an AR of 4:3. [ref] has an AR of 16:9.
640 / 4 = 160. So the new width for [main] is 160.
160 / ((320 / 240) * (1 / 1)) = 160 / (4 / 3) = 120. So the new
height for [main] is 120.
160 / 120 = 4 / 3 so [main]'s aspect ratio has been maintained while
using [ref]'s width as a reference point.[ref] is nullsink'd since it is left unchanged by scale2ref (and so
shouldn't need to be tested).If we were to use "iw/4 :-1" in place of "iw/4:ow/mdar" :
640 / 4 = 160. So the new width for [main] would be 160.
360 / 4 = 90. So the new height for [main] would be 90.
160 / 90 = 16 / 9 so [main] now has the same aspect ratio as [ref]
which is probably what you do not want.This is currently the only test for scale2ref.
Signed-off-by : Kevin Mark <kmark937@gmail.com>
Signed-off-by : Michael Niedermayer <michael@niedermayer.cc> -
extract audio channels using ffmpeg-python wrapper
21 mars 2023, par AzazelI read previous posts about this, but none seems to work/cover this specific scenario


I am using ffmpeg-python, and I am trying to extract the audio channels from a file which I dont know how many channels it has.


I've been looking at pan and channelsplit methods from ffmpeg doc page, and tried to implemente with the wrapper, but get
syntax error
orinvalid argument
orNo option name near... Error parsing a filter description arround [s0]
error from ffmpeg.

I have also tried using
map='0:a:0
on theoutput
method but it doesnt extract the channels.

Since I dont know how many streams nor channels the audio will have, my idea was to split them all using
ffmpeg.input("input.mp3").filter('channelsplit')
, but first : the default for this is "stereo", and I dont know if my audio will have stereo or mono. Or 5.1, etc (I know I can check with ffprobe, but can an audio file have a mix of streams ?)

Anyway, I tried with
pan
filter too, asffmpeg.input("input.mp3").filter('pan', 'pan=1|c0=c0')