winscripter/dotnetVEE

Two MP3 files into a single MP3 file

Opened this issue · 2 comments

Hello, I would like to concatenate two MP3 files into a single MP3 file. Do you have any specific sample code?I look forward to your response. Thank you.

Hello.

dotnetVEE does not yet support concatenating two MP3 files into a single one. It primarily focuses on video editing.

If you'd like this feature to be added, please let me know.

Update

dotnetVEE 2.0.0 allows you to concatenate two audio files:

using dotnetVEE.Computation.Audio;

AudioFx.Concatenate(
    "audio1.mp3",
    "audio2.mp3",
    "output.mp3"
);