Results 1 to 10 of 11

Thread: Remove Play/Stop Icons

Hybrid View

  1. #1
    Join Date
    Feb 2012
    Posts
    8

    Default Remove Play/Stop Icons

    Hello,

    Is it possible to remove the Play/Stop icons that appear on the upper left corner between two videos?

    Any help would be much appreciated.

    Thanks,

    Yannick

  2. #2
    Join Date
    Jul 2008
    Posts
    3,503

    Default

    Quote Originally Posted by ermood View Post
    Hello,

    Is it possible to remove the Play/Stop icons that appear on the upper left corner between two videos?

    Any help would be much appreciated.

    Thanks,

    Yannick
    I don't think it is. I'll look into it.

  3. #3
    Join Date
    Feb 2012
    Posts
    8

    Default

    Thanks,

    If we can't turn them off wouldn't it be possible to just erase the images?

  4. #4
    Join Date
    Jul 2008
    Posts
    3,503

    Default

    Hello ermood,

    Unfortunately no this is not possible on any of the mass production firmware. Is there a reason why you would need to remove these icons?

  5. #5
    Join Date
    Feb 2012
    Posts
    8

    Default

    Hi Ben,

    We are going to display some slideshows and videos. Every screen will have a 30min loop composed of different files. It would be better looking without these icons between all the files.

  6. #6
    Join Date
    Dec 2009
    Location
    Canada (ON)
    Posts
    2,035

    Default

    Quote Originally Posted by ermood View Post
    Thanks,

    If we can't turn them off wouldn't it be possible to just erase the images?
    This might be possible if you have a little bit of knowledge of linux and able to telnet to your PBO. If you are using a Patriot stock firmware it more than likely uses squashfs which is can not be written too; fortunately linux provides a mount command that can be use to tell it to look somewhere else for a certain file(s). The trick would be to find those two images .... I think there are under resources somewhere ... I would have to look it up; and then overmount those 2 files (since you probably will not be able to erase them) somewhere else to an empty image file writing where you actually have write access (/usr/local/etc/ directory for example. I do not have access to my PBO right now so I can not be sure on the specific path but in a nutshell you would be looking at a command like that.

    Code:
    touch /usr/local/etc/stop.jpg
    touch /usr/local/etc/play.jpg
    mount -o bind /usr/local/etc/stop.jpg(empty file) /usr/local/bin/resources/images/stop.jpg
    mount -o bind /usr/local/etc/play.jpg(empty file) /usr/local/bin/resources/images/play.jpg
    If you have any knowledge at all about Linux you should have some ideas of what I am trying to do here. Of course it is possible that the empty file causes an error but I doubt it. It would be easy to run a little script to do this everytime your PBO boots up or to run this script manually whenever you need to remove those images.

    Anyhow I think this might work; I can help with that if you want.

    Cheers !!!

  7. #7
    Join Date
    Feb 2012
    Posts
    8

    Default

    Quote Originally Posted by snappy46 View Post
    This might be possible if you have a little bit of knowledge of linux and able to telnet to your PBO. If you are using a Patriot stock firmware it more than likely uses squashfs which is can not be written too; fortunately linux provides a mount command that can be use to tell it to look somewhere else for a certain file(s). The trick would be to find those two images .... I think there are under resources somewhere ... I would have to look it up; and then overmount those 2 files (since you probably will not be able to erase them) somewhere else to an empty image file writing where you actually have write access (/usr/local/etc/ directory for example. I do not have access to my PBO right now so I can not be sure on the specific path but in a nutshell you would be looking at a command like that.

    Code:
    touch /usr/local/etc/stop.jpg
    touch /usr/local/etc/play.jpg
    mount -o bind /usr/local/etc/stop.jpg(empty file) /usr/local/bin/resources/images/stop.jpg
    mount -o bind /usr/local/etc/play.jpg(empty file) /usr/local/bin/resources/images/play.jpg
    If you have any knowledge at all about Linux you should have some ideas of what I am trying to do here. Of course it is possible that the empty file causes an error but I doubt it. It would be easy to run a little script to do this everytime your PBO boots up or to run this script manually whenever you need to remove those images.

    Anyhow I think this might work; I can help with that if you want.

    Cheers !!!
    Thanks Snappy46,

    I get the idea of what you are trying to do. My knowledge of Linux is somehow limited so I wouldn't launch myself in an area that's too dark for me.

    I'll gladly follow your instructions as it looks to be a great way of doing what I want to.

    Thanks a lot,

  8. #8
    Join Date
    Feb 2012
    Posts
    8

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •