AydinAdn / MediaToolkit

A .NET library to convert and process all your video & audio files.
MIT License
648 stars 199 forks source link

c sharp merging audio video #63

Open OurIslam opened 7 years ago

OurIslam commented 7 years ago

i try to merge a video merg audio ffmpeg -i video.mp4 -i audio.mp3 -c copy merged_output.mp4 how can i do it with mediatoolkit c#

OrhanTozan commented 7 years ago

I also wanted to do this but I think you have to do it this way:

using (var engine = new Engine())
{
    engine.CustomCommand("-i video.mp4 -i audio.mp3 -c copy merged_output.mp4");
}
WaGi-Coding commented 5 years ago

i can't get custom commands to work

EDIT: Still no success :/