Opened 17 years ago
Closed 6 years ago
#1503 closed enhancement (fixed)
MediaPlayer doesn't remember previous volume setting
Reported by: | scottmc | Owned by: | stippi |
---|---|---|---|
Priority: | normal | Milestone: | R1 |
Component: | Applications/MediaPlayer | Version: | R1/Development |
Keywords: | Cc: | redeye4@… | |
Blocked By: | Blocking: | ||
Platform: | All |
Description
I opened a wav file copied from a CD, and MediaPlayer opened up with the volume set to about 50%, this was very loud on my laptop so I reduced it to about 10%. I closed it and then opened a different wav file and it was at 50% again. I was going to reboot into BeOS to check how it was there but having issues getting BeOS to boot at the moment so couldn't check it. This might be app related or media prefs related, i'm not sure which keeps track of previous volume settings or if that's even an option, but it "should" be if it's not. I'm marking it as an enhancement for now.
Attachments (4)
Change History (37)
follow-up: 2 comment:1 by , 17 years ago
Owner: | changed from | to
---|---|
Status: | new → assigned |
comment:2 by , 15 years ago
Cc: | added |
---|
After a bit of reading through the Media Kit section in the Be Book, I reckon that:
- PlaylistItem could be changed to add volume as an available attribute.
- Controler could be changed to check PlaylistItem for stored volume when FileChanged is called, and store volume when FileFinished is called.
This is only a first idea, I wonder if this is the most elegant solution.
I worry about the fact that the volume is a float value, but that PlaylistItem stores numbers only as int64, and that a PlaylistItem isn't necessarily a file.
comment:3 by , 15 years ago
Your observations are correct. The PlaylistItem should provide a virtual interface for retrieving and setting a persistent volume. The default implementation would be empty. Only the FilePlaylistItem would then implement it via node attributes.
comment:4 by , 15 years ago
Forgot to mention that the type of the value, float or integer is free to chose.
by , 15 years ago
Attachment: | mediaplayer-volume-memory.diff added |
---|
First efforts at addressing this enhancement.
comment:5 by , 15 years ago
The global structure seems okay to me (pay no attention to the printf's).
I thought it more strategic to act when the PlaylistItem changed.
This is non-functional, which I think is due to the actual attribute write (it seemed like it should have worked, no luck).
Also, I should probably use the Attribute structure for the actual attribute string.
My apologies for not following a couple of the style rules (80 chars again)
follow-up: 7 comment:6 by , 15 years ago
I believe the Controller has the volume as float between 0 and 1. So using int64 as attribute type and converting it via (int) will not work. I don't understand the first two hunks of the patch. Why do you need fLastPlaylistItem at all?
Restoring the volume from the attribute when the playlist item is opened is correct. However, you also need to actually store the volume when it changes. Here is what I think about volume on items: The user has a very easy way to change the global volume of the system. Changing the volume in MediaPlayer could work as an adjustment, i.e. when the volume is not properly normalized in the file. Or with quite loud files where the waveform has a lot of energy across many frequency bands. With these things in mind, I believe the MediaPlayer should apply the volume of the previous song to the next song, but only as long as it's still the same album (i.e. within the same folder on disk). The right place to add this knowledge would be the Playlist, IMHO.
One last remark... if you indeed need to reference a PlaylistItem pointer, it needs to be a reference. The code directly above your first hunk shows how to do that. This is important, since PlaylistItems are refernce counted, across different threads even. (PlaylistWindow and MainWin are two threads messing with the Playlist.)
comment:7 by , 15 years ago
I agree with storing volume as a float attribute, when I started I followed the methods that were available in PlaylistItem for some reason.
As for fLastPlaylistItem, my solution involved doing the loading and storing at the same moment, so when an item is loaded, it stores the volume in the last item, then restores the volume from the new item. I needed a place in the code from which could access the player volume and the playlist, and which could react to item change.
At the point I chose, when the Message was received, the item had already changed, so in order to save the volume to the last played item I chose to store reference. A more elegant solution would be to let the Playlist deal with it's own volume data, but I don't presently know how I it could nicely access the Controller volume in both directions.
If I understand your thoughts correctly, the stored value wouldn't really be a volume, rather a factor to reduce volume on loud items and raise it for quiet items. Also if media player doesn't find an volume info, it first looks for nearby items with the same album data, logically starting with the last item (for example).
Thanks for the reference remark, I'll keep that in mind :)
comment:9 by , 13 years ago
Owner: | changed from | to
---|---|
Status: | in-progress → assigned |
Actually it is funny you ask since I was about to start auditing my older tickets and removing the ones I'm not working on (since I've recently added a bunch of new ones I have more hope of working on.)
The short answer is no :)
I just never thought there was a very elegant fix to this bug, though I'll admit not looking very closely at engleek's patch.
Assigning to nobody.
comment:10 by , 13 years ago
comment:12 by , 12 years ago
Problem is valid.MediaPlayer doesn't remember previous volume setting in haikuR1/Alpha 4.1.
by , 11 years ago
Attachment: | 0001-Mediaplayer-resume-at-latest-position-and-restore-vo.patch added |
---|
comment:13 by , 11 years ago
patch: | 0 → 1 |
---|
comment:14 by , 11 years ago
This patch is functionnal here, but I would appreciate some feedback.
Mediaplayer now remembers volume setting, but keeps current volume when play files from the playlist. I also implemented a resume feature and associated options. Again, it starts from the begining of the file if it is loaded from the playlist.
comment:15 by , 11 years ago
Owner: | changed from | to
---|
comment:17 by , 10 years ago
Style violations:
- 2 blank lines between methods
- Missing space between if and (
- Missing space after =
Functionality:
- The BAlert for resuming isn't locale-safe. Use BString.SetToFormat() and B_TRANSLATE().
- I don't understand why the 50* and /50 on volume. Wouldn't it be simpler if the volume was stored as a float between 0 and 1 everywhere?
comment:18 by , 10 years ago
Owner: | changed from | to
---|---|
Version: | R1/pre-alpha1 → R1/Development |
This looks easy enough; if the original author can't do it I'll be happy to.
comment:19 by , 10 years ago
Thanks for looking into it! I believe the frame property for the resume feature (which would be much appreciated) needs to be stored as int64. Otherwise, the patch just has some minor coding style issues, but I haven't looked very closely.
by , 10 years ago
Attachment: | 0001-MediaPlayer-remember-position-and-volume.patch added |
---|
comment:20 by , 10 years ago
There you go ;) Please tell me if there is any problem with this (it compiles but I couldn't test the changes since last patch).
comment:21 by , 10 years ago
Thanks for the patch! Here are some coding issues:
- two blank lines between methods.
- space before and after operators (/ % = ...), line 704, 714, 716 in Controller.cpp
- line 692 in Controller.cpp: two tabs instead of one.
- line 717 in Controller.cpp: 80 characters length.
- FilePlaylistItem.cpp: multiline blocks require braces.
by , 10 years ago
Attachment: | 0001-Mediaplayer-remember-position-and-volume.patch added |
---|
comment:23 by , 10 years ago
Owner: | changed from | to
---|
comment:24 by , 9 years ago
Is there some reason for not applying this? The patch looks like OK to me.
comment:25 by , 9 years ago
Probably because no one reviewed the last version yet?
I see room for improvement (like using BDurationFormat instead of custom code to format the duration), but maybe we should apply it first and see about that later.
comment:27 by , 9 years ago
Ok, then I tested the patch. The functionality is here but I'm not convinced by the pop-up appearing and asking to resume the previous play time, so this behavior should be disabled by default to avoid annoying the user. Another problem is that when the file is played from playlist, those settings should be ignored.
comment:28 by , 8 years ago
The frame property for the resume feature has already been implemented. Am I wrong?
comment:30 by , 8 years ago
The MediaPlayer only stores the position of the current playlist for audio files; but that's part of the playlist, not the audio file.
comment:32 by , 6 years ago
patch: | 1 → 0 |
---|
comment:33 by , 6 years ago
Resolution: | → fixed |
---|---|
Status: | assigned → closed |
Merged in hrev ... or, well, looks like the post-commit hook that adds hrevs broke. It's merged in https://git.haiku-os.org/haiku/commit/?id=3248de3de47011137e0c667a7247dd424c827bd7 though.
You are right that MediaPlayer does not save the volume setting.
Since there can be multiple MediaPlayer windows I think we need a per file volume setting, which I figure could be stored as an attribute of the files in question. So I did some research and indeed the R5 media player stores the volume setting (and quite a few other settings) as attributes of the media file:
0x52454354 16 be:mediaPlayer_frame
So I think we need to do something similar.