Questions tagged [videoconverter]

2 questions
0
votes
0 answers

How to add text on video using NReco VideoConverter ffMpeg

I tried to add text on video using NReco VideoConverter which is ffmpeg wrapper for C#. I tried below code var ffMpeg1 = new NReco.VideoConverter.FFMpegConverter(); ffMpeg1.FFMpegToolPath =…
vaibhav shah
  • 4,939
  • 19
  • 58
  • 96
-1
votes
1 answer

'ffmpeg' is not recognized as an internal or external command,

I have to convert a .TS file to MP4 File and for that I am using subprocess to convert it. for this I have written a python file. import subprocess infile = 'vidl.ts' subprocess.run(['ffmpeg', '-i', infile, 'out.mp4']) I have also added ffmpeg to…
Tushar Sethi
  • 310
  • 2
  • 11