View MJPG Video Streaming in Xamarin.Android
View MJPG Video Streaming in Xamarin.Android Hey today we learn how to implement a simple view over a simple binding( https://bitbucket.org/neuralassembly/simplemjpegview/overview ) to show an streaming of a IP Cam (MJPEG) lets start: First add a new Android App Project like the snapshot: Then add an "Android Java Bindings Library": In the binding project we add an Jar library, you can download a compiled jar from here ( https://app.box.com/s/1o558pfmacy65fv07mk1 ) After this you can add our binding library to Android App Project The library uses a "libImageProc" Native Library to process video data we need to add all of this .so files ( https://app.box.com/s/6fydrwwc9ac9esn0fu0o ), I Recommend to add it in a new "Lib" folder After adding the native library we need to change BuildAction for each of .so files to "AndroidNativeLibrary" After this configuration steps now yes now we continue with the CODE, Fuck Yeah¡¡¡ Here a simple layout implemen...