Hi
Every time I change the parameters for FFMPEG it doesn't work. I want to increase the quality and add meta data with flvtool2 for streaming
Video is my input variable and mpg is the output variable. Does the parmeter string need concatenation with & symbols or with + symbols?

Please help

This will work:

Dim cmd As String = " -i """ & video & """ """ & mpg &  """"

This does not work:

Dim cmd As String = " -i """ & video & """ -target vcd -bf 2\ """ & mpg & """"

vb definitly uses & instead of + to concatenate so you've got that right

as far as why the first one works but the second doesnt that falls out of my expertise, can't help

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.