maemo.org - Talk

maemo.org - Talk (https://talk.maemo.org/index.php)
-   Multimedia (https://talk.maemo.org/forumdisplay.php?f=32)
-   -   [ANNOUNCE] MediaBox Media Center 2010.06.26 is out for N900, N800, N810 (https://talk.maemo.org/showthread.php?t=57262)

prattmic 2010-09-28 04:00

Re: [ANNOUNCE] MediaBox Media Center 2010.06.26 is out for N900, N800, N810
 
Quote:

Originally Posted by bertolt (Post 827418)
huh?
tap on the top of the screen, it will display some options like repeat 1 track, repeat all tracks, continuos play, shuffle...

I have it on no repeat and shuffle, but when I press the skip button nothing happens. The only option that does anything is repeat one track, which restarts the current track. There are lots of other songs in the playlist that work fine by themselves. I should note that I can't skip songs under all tracks either.

dsawhney 2010-09-28 04:12

Re: [ANNOUNCE] MediaBox Media Center 2010.06.26 is out for N900, N800, N810
 
Thanks for the great application. Is there a way to configure default quality setting (mp4?) in youtube player so i don't have to select it for every video ?
Also, can there be a setting to play just the selected youtube video not all in the list ?

pycage 2010-09-28 04:16

Re: [ANNOUNCE] MediaBox Media Center 2010.06.26 is out for N900, N800, N810
 
Quote:

Originally Posted by dsawhney (Post 828039)
Thanks for the great application. Is there a way to configure default quality setting (mp4?) in youtube player so i don't have to select it for every video ?
Also, can there be a setting to play just the selected youtube video not all in the list ?

The default quality setting can be set in the next version. This will come soon.
The other request sounds useful, too. Maybe soon.

dsawhney 2010-09-28 04:59

Re: [ANNOUNCE] MediaBox Media Center 2010.06.26 is out for N900, N800, N810
 
Quote:

Originally Posted by pycage (Post 828042)
The default quality setting can be set in the next version. This will come soon.
The other request sounds useful, too. Maybe soon.

Thanks, one more request - I've to click on the youtube search text box for it to get focus, can this be made automatic ?

bertolt 2010-09-28 05:02

Re: [ANNOUNCE] MediaBox Media Center 2010.06.26 is out for N900, N800, N810
 
try loop over (2nd option) and linear playback(4th). it works fine with me.

Quote:

Originally Posted by prattmic (Post 828030)
I have it on no repeat and shuffle, but when I press the skip button nothing happens. The only option that does anything is repeat one track, which restarts the current track. There are lots of other songs in the playlist that work fine by themselves. I should note that I can't skip songs under all tracks either.


prattmic 2010-09-29 03:25

Re: [ANNOUNCE] MediaBox Media Center 2010.06.26 is out for N900, N800, N810
 
Quote:

Originally Posted by bertolt (Post 828063)
try loop over (2nd option) and linear playback(4th). it works fine with me.

Nope, the skip button does highlight as I click it, but it does nothing.

mase 2010-10-02 07:42

Re: [ANNOUNCE] MediaBox Media Center 2010.06.26 is out for N900, N800, N810
 
I have added a lot of albums to a playlist. When I start the playlist
with shuffle, I think, that titles are played only from a few albums.
Is that possible? What shuffle algorithm is used?

pycage 2010-10-02 08:32

Re: [ANNOUNCE] MediaBox Media Center 2010.06.26 is out for N900, N800, N810
 
Quote:

Originally Posted by mase (Post 831428)
I have added a lot of albums to a playlist. When I start the playlist
with shuffle, I think, that titles are played only from a few albums.
Is that possible? What shuffle algorithm is used?

Random selection on a list of items where every item gets removed from when played, so it doesn't get played again until list got depleted completely at which point it gets filled up again.

Given time, the shuffling plays songs from all albums in the playlist.

The code for selecting the next item is this:
Code:

idx = random.randint(0, len(self.__random_files) - 1)
next_item = self.__random_files.pop(idx)

self.__random_files being the list of items not played yet.
It might well be that random.randint doesn't distribute equally.

Documentation: http://docs.python.org/library/random.html

jkq 2010-10-04 17:32

Re: [ANNOUNCE] MediaBox Media Center 2010.06.26 is out for N900, N800, N810
 
Quote:

Originally Posted by pycage (Post 831439)
Random selection on a list of items where every item gets removed from when played, so it doesn't get played again until list got depleted completely at which point it gets filled up again.

Given time, the shuffling plays songs from all albums in the playlist.

How does the repeat all setting affect this?

-jkq

pycage 2010-10-04 18:02

Re: [ANNOUNCE] MediaBox Media Center 2010.06.26 is out for N900, N800, N810
 
Quote:

Originally Posted by jkq (Post 833189)
How does the repeat all setting affect this?

-jkq

"Normal" mode and "repeat all" mode behave the same when shuffling. Both refill the "random list" after it gots depleted.
"Repeat one" simply plays the same file over and over and doesn't get affected by shuffling.


All times are GMT. The time now is 05:46.

vBulletin® Version 3.8.8