Akash Kava
Akash Kava
@John0King Its been long since I answered, I have created my own JavaScript engine in C# which supports most of features of ES6 through ES2019. You can try and let...
For Android 6.0 onwards, use Xamarin.Android.MP4Transcoder, look at the README.md, and let me know if it works.
You have to check ffmpeg commands to extract audio mp3
Can you catch exception and print it? This feature depends upon MP4 transcoder that is part of Android itself, very old devices and some devices had buggy implementation so it...
If you read line `Non-baseline AVC video profile is not supported by Android OS` in the exception, the video profile is not supported by Android OS. However, I have found...
@anonymuspro What is your build platform? I guess after Android 6, ffmpeg had lot of issues so we dropped and we are using alternative Xamarin.Android.MP4Transcoder. See if you can use...
Could you please add some log?
@lofcz YantraJS currently isn't designed to run in a browser like sandboxing. The purpose was to create Node like environment to create native apps and server apps where scripts are...
@lofcz Hi, Can you give an example of how you want to sandbox the execution? Currently, if you disable CLR, and if you create your own class derived from `JSObject`...
@lofcz Point 1 was implemented as decorating `[JSExport]` on members of a class derived from `JavaScriptObject`. https://github.com/yantrajs/yantra/blob/main/YantraJS.Core.Tests/ClrObjects/CustomObject.cs (4) I haven't thought about it yet, but yes, it is not that...