フィルターのクリア

AI Speech vs Human Speech

7 ビュー (過去 30 日間)
Brantley
Brantley 2019 年 4 月 17 日
回答済み: Gagan Agarwal 2024 年 5 月 30 日
Is it possible to use matlab to detect whether a human or AI voice is talking? If so, can someone give me links to assist.
  3 件のコメント
Brantley
Brantley 2019 年 4 月 17 日
How would you use matlab to determine if the AI or human is talking?
Walter Roberson
Walter Roberson 2019 年 4 月 17 日
The first two items I posted are obviously actionable:
  1. Measure noise in the signal. More noise would tend to imply human.
  2. Find copies of the same word and compare them to see how similar they are. You might use mfcc to recognize words, and then once recognized, isolate the words from the stream, and xcorr. High cross correlation makes it more likely that it is AI. You might have a look at dynamic time warping: the less warping that is needed, the more likely that it is AI generated, since AI is less likely to have micro-changes in timing.

サインインしてコメントする。

回答 (1 件)

Gagan Agarwal
Gagan Agarwal 2024 年 5 月 30 日
Hi Brantley
Yes, it's possible to use MATLAB to detect whether a sound is produced by a human or an AI-generated voice. This task falls under the broader category of audio analysis and machine learning.
Here's a high-level overview of how you might approach this problem:
  1. Collect a dataset that includes both human and AI-generated voices. The dataset should be large and diverse enough to train a robust model.
  2. Audio data generally requires preprocessing before it can be used for training a model. This might involve converting the audio files into a uniform format, sampling rate normalization etc.
  3. Choose the deep learning model for training.
  4. After training evaluate the performance of the model.
I hope it helps!

カテゴリ

Help Center および File ExchangeAudio I/O and Waveform Generation についてさらに検索

タグ

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by