MediaToolkit icon indicating copy to clipboard operation
MediaToolkit copied to clipboard

c sharp merging audio video

Open OurIslam opened this issue 8 years ago • 2 comments

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#

OurIslam avatar Feb 01 '17 14:02 OurIslam

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");
}

OrhanTozan avatar Nov 19 '17 21:11 OrhanTozan

i can't get custom commands to work

EDIT: Still no success :/

WaGi-Coding avatar Jan 02 '19 19:01 WaGi-Coding