如何删除"声乐节"在.NET中的音频文件?声乐、音频文件、QUOT、NET

2023-09-03 03:52:19 作者:贫尼前往西天取精ヽ

这是一个音频文件(MP3歌曲),我试图提取该文件的文书的一部分,以创建一个minus一个轨道。

如何使用.NET这样做吗?

有没有办法实现这样的事情?

 新的AudioFile(Song.mp3的)。RemoveVocals()。SaveTo(宋edited.mp3)
 

解决方案

在我的工作中,我们做了很多的媒体编码类的东西在C#(Silverlight的,是具体的)。我们在移植从Adobe主任Silverlight中,这意味着,当然应用程序的中间,所有的媒体,我们是在使用前(.OGG尤其SWF文件)不再与我们的架构兼容。所有交叉编码,我们做的发生code以外,使用第三方工具。如果你正在尝试做这样的飞行,你很可能将不得不自己写。如果你想要它做pre-运行时,我就开始寻找实用程序,做到这一点。

如何消除一段音频 MP3格式 中的人声而保留背景音乐

From an audio file (mp3 song) and I'm trying to extract the "instrument" part of the file to create a minus one track.

How can this be done with .NET?

Is there any way to achieve something like this? :

new AudioFile("song.mp3").RemoveVocals().SaveTo("song edited.mp3")

解决方案

At my work we do a lot of media encoding type things in C# (Silverlight, to be specific). We're in the middle of porting an application from Adobe Director to Silverlight, which means, of course, that all of the media we were using before (.ogg and .swf files in particular) no longer are compatible with our framework. All of the cross encoding that we do happens outside of code, using third party tools. If you are trying to do this on the fly, you're likely going to have to write it yourself. If you want it done pre-runtime, I would start searching for utilities that do it.