[Solved] Android Skype recorder [closed]

As the community ratings suggest, you should try to give us code that isn’t working and specifically ask for something that volunteers can fix. Besides that point, here’s what i do know from past experiences with Android and recording: for your app to record what is being displayed on the screen, you need access to … Read more

[Solved] Get Skype chat history from main.db synced to MySQL with PHP

If you have WAMPP running then just create a BAT file: copy /b/v/y C:\Users\YOURNAME\AppData\Local\Packages\Microsoft.SkypeApp_kzf8qxf38zg5c\LocalState\s4l-YOUR_SKYPE_NAME.db C:\wamp64\www\skype.db Then you have the DB file accessible with PHP $db = new SQLite3(‘skype.db’); $results = $db->query(‘SELECT nsp_data FROM messagesv12’); while ($row = $results->fetchArray()) { // And here’s the data: // $messages[‘cuid’] // $messages[‘conversationId’] // $messages[‘creator’] // $messages[‘createdTime’] // $messages[‘content’] } … Read more