Merge branch 'feature-headless' of github.com:codestation/qcma into feature-headless
This commit is contained in:
@@ -1,5 +1,6 @@
|
|||||||
qcma (0.3.0) unstable; urgency=low
|
qcma (0.3.0) unstable; urgency=low
|
||||||
|
|
||||||
|
* Headless qcma version.
|
||||||
* Set the default video codec to h264 is metadata skip is enabled.
|
* Set the default video codec to h264 is metadata skip is enabled.
|
||||||
* Delay the progress dialog by one second so it doesn't show on quick scans.
|
* Delay the progress dialog by one second so it doesn't show on quick scans.
|
||||||
* Do not show the disconnect message if no connection is established.
|
* Do not show the disconnect message if no connection is established.
|
||||||
|
|||||||
23
README.md
23
README.md
@@ -26,6 +26,29 @@ official CMA and also offer some features missing in the original one.
|
|||||||
#### Planned features
|
#### Planned features
|
||||||
* **Android version**: port of Qcma to Android.
|
* **Android version**: port of Qcma to Android.
|
||||||
|
|
||||||
|
## Headless version
|
||||||
|
|
||||||
|
There is a qcma_cli binary that doesn't need a X session running (useful for servers).
|
||||||
|
The daemon provides minimal interaction via dbus. Here are some usage examples:
|
||||||
|
|
||||||
|
#### Send a signal to refresh the database
|
||||||
|
|
||||||
|
```
|
||||||
|
dbus-send --session --type=method_call --dest=org.qcma.HeadlessManager /HeadlessManager org.qcma.HeadlessManager.refreshDatabase
|
||||||
|
```
|
||||||
|
|
||||||
|
#### Send a signal to stop the daemon
|
||||||
|
|
||||||
|
```
|
||||||
|
dbus-send --session --type=method_call --dest=org.qcma.HeadlessManager /HeadlessManager org.qcma.HeadlessManager.stop
|
||||||
|
```
|
||||||
|
|
||||||
|
#### Receive confirmation when the database finished updating
|
||||||
|
|
||||||
|
```
|
||||||
|
dbus-monitor "type='signal',sender='org.qcma.HeadlessManager',member='databaseUpdated'"
|
||||||
|
```
|
||||||
|
|
||||||
## Dependencies
|
## Dependencies
|
||||||
* [Qt 4.x or 5.x](http://qt-project.org/)
|
* [Qt 4.x or 5.x](http://qt-project.org/)
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user