In this video it shows the steps to run a python code in Android App’s code. It calls the python script from the Java code. It uses chaquopy plugin, which is Python SDK for Android. Details are available at: https://chaquo.com/chaquopy/ The steps for setting the Gradle is taken from this…
Tag: library
How to play HLS (HTTPs live stream) videos on your Android TV App?
In this video it shows the steps to develop your Android TV App to play HLS (HTTPs live stream) videos. It uses sample HLS video available at: https://ottverse.com/free-hls-m3u8-test-urls/ During the development of this App, below error was observed in debugging. “No suitable media source factory found for content type: 2”…
How to download a file from FTP server in your Android App?
In this video it shows the code to download a JPG file from FTP server and then display it over an ImageView in your Android App. It uses following dependency in the code:https://mvnrepository.com/artifact/commons-net/commons-net/3.10.0 I hope you like this video. For any questions, suggestions or appreciation please contact us at: https://programmerworld.co/contact/…
How to resolve error (red color marked on project name) in eclipse for any project (selenium or java)?
In this video will see how to resolve red color marked error on any project written in eclipse it can be selenium (webdriver,testNG,maven) or java. I hope you like this video. For any questions, suggestions or appreciation please contact us at: https://programmerworld.co/contact/ or email at: programmerworld1990@gmail.com Screenshot: Excerpt: In the…
How to add external jar file in selenium project/How to configure or import jar file for eclipse project?
In this video will see how to add/configure/import external jar files in selenium webdriver or any java eclipse project. Steps: Right click on project->Build Path->Configure Build Path->Libraries->Select ClassPath->Add External JARS->Select Jars to be uploaded->Click Open->Click Apply And Close. I hope you like this video. For any questions, suggestions or appreciation…
How to set color brightness of an image using a SLIDER in MATLAB App R2023a?
The content provides a MATLAB App Designer R2023a developed application for image brightness control. The application modifies the brightness of an image using the dynamic slider value. The presented source code shows an ‘ImageControlApp’ class with properties that match with app components and callback methods which handle component events. The key function, ‘SliderValueChanging’, adjusts the image source according to the changing value of the slider for brightness control. The program further constructs and deletes the application along with the user interface figure, as needed. The application source code and video tutorial is available for better understanding.
How to detect rising edge in signal in your Simulink model in MATLAB R2023a?
This video shows steps to detect the rising edge part in your signal. So, whenever the direction of your signal goes towards a rise, the logic will detect it and generate a pulse signal for those points. It simply uses a combination of delay block and difference (minus) block to…
How to import external Jar files as libraries in Android Studio Environment?
In this video it shows the steps to include the external Jar files in your Android Studio as libraries. It shows how the gradle file gets updated by adding the Jar files in the Android Studio environment. I hope you like this video. For any questions, suggestions or appreciation please…
How to read texts from an image (OCR) using google vision library in your Android App?
This video shows the steps to implement the google vision library to read or detect the texts and strings from an image, like an OCR (Optical Character Recognition). It demonstrates the functionality using different fonts and text sizes in the different images. I hope you like this video. For any…