Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add install instruction for Linux users #91

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/build
/dist
*.pyc
pmca-venv/
48 changes: 45 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,56 @@
# Reverse engineering Sony PlayMemories Camera Apps #

| Latest release | Travis CI | AppVeyor |
|--------------------------------------------------------------------------------------------------------------------------------------------------|--------------------------------------------------------------------|------------------------------------------------------------------------|
| [![Dowload](https://img.shields.io/github/downloads/ma1co/Sony-PMCA-RE/latest/total.svg)](https://github.com/ma1co/Sony-PMCA-RE/releases/latest) | ![Travis CI](https://img.shields.io/travis/ma1co/Sony-PMCA-RE.svg) | ![AppVeyor](https://img.shields.io/appveyor/ci/ma1co/Sony-PMCA-RE.svg) |

The latest Sony cameras include an Android subsystem used to run apps from the proprietary Sony PlayMemories Camera App Store (PMCA). The tools provided in this repository allow you to install custom Android apps on your camera.

Additional effort has been made to analyze the firmware update process. Using the obtained knowledge, we can execute custom code on almost all Sony Cybershot and Alpha cameras released between 2007 and 2016.

## Installing Android apps ##
The list of cameras featuring the Android subsystem can be found [here](https://github.com/ma1co/OpenMemories-Framework/blob/master/docs/Cameras.md).

The list of available apps can be found at [sony-pmca.appspot.com](https://sony-pmca.appspot.com/). If you are using Internet Explorer or Safari, apps can be installed directly from your browser. Other browsers and recent camera firmware updates are not compatible with this method anymore. It is recommended to use the native installers (pmca-gui and pmca-console) instead.
### Using PMCGA-gui (recommended)

#### Windows and OS X

Download binaries for your system from the [release section](https://github.com/ma1co/Sony-PMCA-RE/releases/latest).

#### Debian / Ubuntu

Install the last release of PMCA-gui from the sources, using pip and virtualenv:

```
sudo apt install curl python-tk python-pip
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

sudo apt install curl python3-tk python-pip

If you are using python3 this is how to install the python3-tk

sudo pip install virtualenv
curl -L https://github.com/ma1co/Sony-PMCA-RE/tarball/master | tar zxv
cd ma1co-Sony-PMCA-RE-*
virtualenv pmca-venv
source pmca-venv/bin/activate
pip install -r requirements.txt
python ./pmca-gui.py
```

#### Developpers

Looking for the development version ? Use `git` instead `curl`:

```
git clone https://github.com/ma1co/Sony-PMCA-RE
cd ma1co-Sony-PMCA-RE
```

### From you browser

If you are using Internet Explorer or Safari, apps can be installed directly from your browser. Other browsers and recent camera firmware updates are not compatible with this method anymore. It is recommended to use the native installers (pmca-gui and pmca-console) instead.

### Next steps

Download and open the program, connect your camera via USB, go to the *Install* tab, select an app from the list and click *Install*.

The list of cameras featuring the Android subsystem can be found [here](https://github.com/ma1co/OpenMemories-Framework/blob/master/docs/Cameras.md).

**pmca-gui is the recommended way to install apps.** Binaries for Windows and OS X are available in the [release section](https://github.com/ma1co/Sony-PMCA-RE/releases/latest). Download and open the program, connect your camera via USB, go to the *Install* tab, select an app from the list and click *Install*.
The list of available apps can be found at [sony-pmca.appspot.com](https://sony-pmca.appspot.com/).

Further information can be found in the sections below.

Expand Down