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

mplayer missing fullscreen option #16

Open
parkerlreed opened this issue Jul 14, 2013 · 2 comments
Open

mplayer missing fullscreen option #16

parkerlreed opened this issue Jul 14, 2013 · 2 comments

Comments

@parkerlreed
Copy link

Noticed videos not playing in fullscreen.

Checked code and it seems mplayer is missing the -fs option

def play_url_mplayer(url,novideo):

if novideo:
  player = subprocess.Popen(
        ['mplayer', '-quiet', '-novideo', '--', url.decode('UTF-8').strip()$
        stdout = subprocess.PIPE, stderr = subprocess.PIPE)
else:
  player = subprocess.Popen(
        ['mplayer', '-quiet', '', '--', url.decode('UTF-8').strip()],
        stdout = subprocess.PIPE, stderr = subprocess.PIPE)
player.wait()
@hololight
Copy link
Contributor

Wasn't totally an oversight on my part. Should fullscreen be default behavior? Remember that 'f' will toggle while video is playing. I can 'fix' it easy enough if that is what is wanted or even make it another command line flag.

Soon enough I want to move all these options into the UI.

@parkerlreed
Copy link
Author

The fullscreen was default before. Thinking about it now, it's actually
nice to not have it launch to fullscreen. Kinda like browsing to the
youtube page. If you are just wanting to view something quickly you don't
bother going fullscreen.

I think that would be good as an extra argument (and eventually in the UI)

On Sun, Jul 14, 2013 at 11:08 AM, hololight notifications@github.comwrote:

Wasn't totally an oversight on my part. Should fullscreen be default
behavior? Remember that 'f' will toggle while video is playing. I can 'fix'
it easy enough if that is what is wanted or even make it another command
line flag.

Soon enough I want to move all these options into the UI.


Reply to this email directly or view it on GitHubhttps://github.com//issues/16#issuecomment-20937644
.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants