Page 1 of 1

[Tip] Backup/Restore picture settings (Tizen only)

Posted: Sun Jul 15, 2018 12:44 pm
by zoelechat
In case, for example, you want to access service menu and you're bothered to *again* loose your picture settings, you can save them all at once using that command:

Code: Select all

dbus-send --system --dest=org.tizen.tv.avoc --type=method_call --print-reply /org/tizen/tv/avoc org.tizen.tv.avoc.AvOutputControl.BackupAllSettings string:/opt/storage/usb/sda1
/opt/storage/usb/sda1 can be replaced by path of your choice, TV will create there an avoc folder with single .avoc.db file inside (SQLite you can browse if you like).

The same way you can restore settings:

Code: Select all

dbus-send --system --dest=org.tizen.tv.avoc --type=method_call --print-reply /org/tizen/tv/avoc org.tizen.tv.avoc.AvOutputControl.RestoreAllSettings string:/opt/storage/usb/sda1
telling path where avoc folder is located. A single channel/source change is needed then to see your settings are back..

Note that sound settings are backed up too!
As far as I tried, only zoom settings (fit to screen etc) are lost, but possible I missed other details: Feel free to report.

Re: [Tip] Backup/Restore picture settings (Tizen only)

Posted: Mon Jul 16, 2018 10:47 am
by juusso
Thanks, mate :)