Monday, October 23, 2017

Screencast - MP4 format Free tool

Today I am going to talk about Screencast O'Matic , one of the Screencast tool.

Before the Screencast O'Matic , I used to use Jing and I was happy using that tool , but On one day I got the mail and request from the client that they want the videos in MP4 format and Jing gives the output file in SWF format and I am not at all intrested to do converison of the videos from SWF to MP4 .

So, I am looking for the tool which should be free and gives me o/p in mp4 format, and Screencast O'Matics solved my problem.Yes, you have read right Screencast O'Matics is free tool,thus they have paid verison too.But as far as now, free tool of Screencast O'Matics solved my all problem.

Access the link is here:
   https://screencast-o-matic.com/screen_recorder

The Key feature of this tool is:
1.No need to install the software
2.It is Free
3.It's gives the output in MP4 format which save more space on your disc
4.It has Record voice over, webcam, pc screen
5.It can be use both MAC as well as windows too.

Every coins has two sides thus,Screencast O'Matics has
It has working limitation , Without internet access you can't able to do recording,

There are limits of free version, it does not allow to recod the video more than 15 minutes those who want to record longer.

But Still I can feel this tool is very easy to use , give it a try.

Monday, July 3, 2017

How to access Android Testing menu ?



In this post I will let you know how to access the Android Testing menu.

When we test the application on the various android devices, most of the time we have to  give  details info about device , normally  those info will get by going to setting of the device.

But there is a code which gives you phone information , usages statistics  and Wifi information those info gets by entering a single code on your dialer. The code is *#*#4636#*#*

Once you dial the above mentioned code the menu appear and you will get surprise that’s menu name is “testing”

But one thing which need to be very careful when accessing the hidden testing menu , You should know what you are accessing.


I have dialed this code in my LG Nexus 5 /6.0.1 and it does work .



Tuesday, January 17, 2017

How to collect android log Using ADB?


In this post, I will let you know that how to collect android log using ADB on Windows.

To collecting log using ADB are always useful :  Why ?

1.You don't need to use third party tool

2.Even If you don't have IDE installed then also your work done because of the ADB

3. Sometimes Android log gets overwritten.so its always better to use ADB

I mostly recommended to collect log using ADB specially when unexpected crashes occur.


Prerequisite:

1. Download and install the Android SDK for windows 

2. Launch the Android SDK Manager, and choose to install Android SDK Platform-tools

3. Install USB Drivers 

4. On the Android device, enable USB debugging

5.Connect the Android device to a Windows computer via the USB cable

Steps:

1.Go to the directory where the ADB executable is located. 

2.Shift+Right Click and select "open command window here"

3. Run the following commands: “adb logcat -c" ---> this use for clearing logs.

4. Reproduce the issue.

5. Then, run the following command to capture the logs in a file:

    “adb logcat -d > Name_of_theFile.txt"