Re: [Mlt-devel] Need guidance in implementing mlt

2023-01-24 Thread Ashish Kumar
HI there, I have reached at point where all the commands Cmake . Cmake —build . . Setenv Cmake —install . Ran successfully. Now I want to run the Play.java in the swig directory of the mlt framework

Re: [Mlt-devel] Need guidance in implementing mlt

2023-01-22 Thread Dan Dennedy
On Sun, Jan 22, 2023 at 7:07 AM Ashish Kumar wrote: > See, what I have done the following steps on my macOS: > > -> brew install cmake > -> brew install melt > -> cloned this repository https://github.com/mltframework/mlt > > Now for these java bindings to work, should I run the code directly in

Re: [Mlt-devel] Need guidance in implementing mlt

2023-01-22 Thread Ashish Kumar
See, what I have done the following steps on my macOS: -> brew install cmake -> brew install melt -> cloned this repository https://github.com/mltframework/mlt Now for these java bindings to work, should I run the code directly in https://github.com/mltframework/mlt/tree/master/src/swig/java Or

Re: [Mlt-devel] Need guidance in implementing mlt

2023-01-22 Thread Brian Matherly via Mlt-devel
> Currently what I am thinking is of using swig for the code conversion that >would change my java code to c/c++ code that mlt will use. I hope you mean the other way around - make Java bindings for MLT so that you Java application can use it. MLT already has Java bindings using SWIG:

[Mlt-devel] Need guidance in implementing mlt

2023-01-22 Thread Ashish Kumar
Hi there, I want to implement this mlt framework in java, for various video editing things. Can you guide me a way through it. Currently what I am thinking is of using swig for the code conversion that would change my java code to c/c++ code that mlt will use. Correct me if I am wrong. Can