Home > Suggestions > Audio effect pitch shift feature.

Audio effect pitch shift feature.

Avatar image
Aug 24, 2015
Archive Agent wrote
I think it's a important feature. can you add for media player ?
when video play,does not affect the video play speed.

qakmak on May 6, 2013 5:59 AM
Completed
1
Vote
Reply
7 Answers
Aug 24, 2015
Archive Agent agent wrote
Roman Minyaylov

Audio_Effects_PitchShift

on May 06, 2013 15:42
Aug 24, 2015
Archive Agent agent wrote
qakmak

Not working, there is my test way:

1.MediaPlayer1.Audio_Effects_Enabled = true;
MediaPlayer1.Audio_Effects_PitchShift(-1, 0, 5);

2.MediaPlayer1.Audio_Effects_Enabled = true;
MediaPlayer1.Audio_Effects_PitchShift(-1, 0, 50);

3.MediaPlayer1.Audio_Effects_Enabled = true;
MediaPlayer1.Audio_Effects_PitchShift(-1, 0, 500);

4.MediaPlayer1.Audio_Effects_Enabled = true;
MediaPlayer1.Audio_Effects_PitchShift(0, 0, 5);

4.MediaPlayer1.Audio_Effects_Enabled = true;
MediaPlayer1.Audio_Effects_PitchShift(0, 0, 5);

5.MediaPlayer1.Audio_Effects_Enabled = true;
MediaPlayer1.Audio_Effects_PitchShift(0, 0, 50);

6.MediaPlayer1.Audio_Effects_Enabled = true;
MediaPlayer1.Audio_Effects_PitchShift(0, 0, 500);

all can't work. I'm test mpg(mpeg-1 vcd) file.

on May 06, 2013 16:51
Aug 24, 2015
Archive Agent agent wrote
Roman Minyaylov

Effect must be added before usage.

MediaPlayer1.Audio_Effects_Enabled = true;
MediaPlayer1.Audio_Effects_Clear(-1);
MediaPlayer1.Audio_Effects_Add(-1, VFAudioEffectType.PitchShift, true);
on May 06, 2013 19:37
Aug 24, 2015
Archive Agent agent wrote
qakmak

ok. I got it. thanks for your helping. but the effect would affects the playback speed. so how can I use that effect and don't let it affects the playback speed? just like let some one woman voice change to a man voice?

on May 06, 2013 19:48
Aug 24, 2015
Archive Agent agent wrote
qakmak

now the effect just like change the playback speed. not like change pitch shift.

on May 06, 2013 19:49
Aug 24, 2015
Archive Agent agent wrote
Roman Minyaylov

Try pitch scale, maybe it's what you need.

on May 06, 2013 19:49
Aug 24, 2015
Archive Agent agent wrote
qakmak

Yeah. that's what I'm talking about. thanks your helping again.

on May 06, 2013 20:26