Log in

View Full Version : Media Player Classic - BE Win32/x64


Pages : 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 [185] 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235

digi340
13th April 2022, 06:32
Yes, just swap the two plugs. Your cable has wrong labels.

The solution was to swap the two plugs.Thanks.

ttowns
13th April 2022, 20:24
No lite Vers. (https://crackshops.com/dr-fone-crack/)

Anima123
14th April 2022, 05:16
v0lt:
How can I activate the experimental one-pass jinc resizer of MPC Video Renderer?

Aleksoid1978
14th April 2022, 05:47
v0lt:
How can i activate the experimental one-pass jinc resizer of mpc video renderer?

Пока никак :):):)

huhn
14th April 2022, 07:45
please also add the anti ringing.
jinc with proper anti ringing is quite a powerful scaler.

v0lt
14th April 2022, 15:05
please also add the anti ringing.
jinc with proper anti ringing is quite a powerful scaler.
I will not improve a new feature until it works. There are many proverbs on this subject.

huhn
14th April 2022, 15:28
looks like AR is part of the code already.
so good luck.

scollaco
14th April 2022, 16:35
Sorry if this is a dumb question. Is there any way to control the size of subtitles while the movie is playing using keyboard shortcuts? Either external or embedded .srt or .ass subtitles? I couldn't find anything in the keys settings. Thanks for any help.

v0lt
14th April 2022, 17:21
Is there any way to control the size of subtitles while the movie is playing using keyboard shortcuts?
There is no such possibility.

scollaco
14th April 2022, 17:24
There is no such possibility.

Oh really? That is too bad. Thanks for the info though.

Liisachan
14th April 2022, 23:04
Is there any way to control the size of subtitles while the movie is playing using keyboard shortcuts? Either external or embedded .srt or .ass subtitles? If you know what you use (let's say, Internal subtitle renderer), and your interface is English, SRT subs will become bigger by hitting:
[Alt]+[P], [B], [A], [S], [Enter], [Alt]+[S], [Down], [Enter], [A], [Esc]
So, if you have a programmable (e.g. gaming) keyboard or mouse, you can define your own keyboard macro for that sequence. Even if you only have a regular keyboard & a mouse, there are external tools like AutoHotKey. For AutoHotKey, the above would be something like this ("Edit This Script" -> paste this -> save it -> "Reload this script").


#F12::
if WinActive("ahk_class MPC-BE")
{
SendPlay {Alt down}{p}{Alt up}{b}{a}{s}{Enter}{Alt down}{s}{Alt up}{Down}{Enter}{a}{Esc}
}
Return

+#F12::
if WinActive("ahk_class MPC-BE")
{
SendPlay {Alt down}{p}{Alt up}{b}{a}{s}{Enter}{Alt down}{s}{Alt up}{Up}{Enter}{a}{Esc}
}
Return


In this example, if you hit [Win]+[F12] when MPC-BE is active, then subs get bigger; if you hit [Win]+[Shift]+[F12], subs get smaller.
In principle, a similar thing is doable for ASS, but that may be much more complicated since ASS may have many (more than 2) styles, and the number of styles can't be hard-coded.

Just curious: Do you think subs are sometimes too small, or too large?

clsid
14th April 2022, 23:14
MPC-HC has a keyboard shortcut for increasing size of text-based subtitles.

Liisachan
14th April 2022, 23:50
@clsid
While that is cool, I think it works only if Internal Subtitle Renderer is used (& not for every ASS style).
Like v0lt said, it's basically impossible to control an external renderer (e.g. xySubFilter) from MPC.
A keyboard macro, on the other hand, can be defined for anything, as long as you know what you use and what key sequence you need to hit.

v0lt
15th April 2022, 05:53
There is a "Default style" option that allows you to make all subtitle text in the same style and eventually control their size.

Liisachan
15th April 2022, 23:16
I think "Default style" can be convenient, when the user finds the subtitles (of a now-playing clip) is hard to read, and wants to switch to their (fixed) default style - their favorite font & size & color, etc. But it's not easy to quickly edit the default style itself. The way MPC-HC works seems elegant, if not perfect, after all - more convenient for lazy users about this, as long as they only use Internal Subtitle Renderer (though not practical for those who want to use other renderers).

BTW I've noticed that MPC-BE has the "Copy the displayed subtitles to the clipboard" command. That's cool (along with my favorite "Copy image to clipboard").

Since in general the user can auto-load a random version of a random external sub renderer, it seems impossible to realize what scollaco asked from MPC-side in a simple/easy way, unless every sub renderer is cooperative, like responding to WM_USER_CHANGE_FONT_SIZE sent from an external process.

An end-user side, dirty macro may be like this:

;; toggle default style by hitting [Win]+[F11]
#F11::
if WinActive("ahk_class MPC-BE")
{
SendPlay {Alt down}{p}{Alt up}{b}{a}{d}
}
Return

Klaus1189
16th April 2022, 08:37
Updated german translation - I made a pull request on github :)

wushantao
16th April 2022, 15:52
https://anonfiles.com/t0q4i8X1x5/mplayerc.sc.rc_7z

Simplified Chinese update

v0lt
17th April 2022, 10:23
@Klaus1189, @wushantao
Thanks. Updated yesterday.

cmhrky
18th April 2022, 19:26
It seems like the subtitle text size decrease/increase is not working. "Subtitle text size: XX" OSD appears, but nothing happens without reload the subtitle.

s0meone_new
18th April 2022, 20:58
Where can i find the texts that need to be translated since stable version 1.6.1? (it would be nice to have a separate change log about this)
Thanks

Klaus1189
18th April 2022, 21:31
https://github.com/Aleksoid1978/MPC-BE/commits/master/src/apps/mpcresources/text/mplayerc.hu.rc.txt

Just click on the last commit which will show a difference of new 2 lines in your file.
There will be shown all changed files in this commit, just scroll down. Bookmark the link I posted and you will see also in the future only the commits which affect your translation file with this link.

This is all you need :)

Klaus1189
18th April 2022, 21:41
Oops, I overread „since 1.6.1“
https://github.com/Aleksoid1978/MPC-BE/blob/e3367af847d0e3650354c90feac5b3dc21afd7ef/src/apps/mpcresources/text/mplayerc.hu.rc.txt
This is the last translation version for stable 1.6.1


https://github.com/Aleksoid1978/MPC-BE/blob/240b73d9fdea907c846192c7abf19a9562064326/src/apps/mpcresources/text/mplayerc.hu.rc.txt
This the newest version with untranslated additions.

Best would be to download both and compare them. Then translate the new and upload here. :)

s0meone_new
19th April 2022, 00:55
Thakns... but...
compare so many rows??
couldn't it be a list? (from new or changed texts)
This will be difficult.
Not much time has passed since the stable version.

I found four texts and translated them:
https://www103.zippyshare.com/v/RndwIip5/file.html

v0lt
19th April 2022, 04:42
It seems like the subtitle text size decrease/increase is not working. "Subtitle text size: XX" OSD appears, but nothing happens without reload the subtitle.
I confirm. Text resizing does not work for SubRip subtitles unless I enable the "Default style" option.

Thakns... but...
compare so many rows??
couldn't it be a list? (from new or changed texts)
This will be difficult.
Not much time has passed since the stable version.
I will advise to use WinMerge (https://winmerge.org/).

s0meone_new
19th April 2022, 09:13
It would be a great help if you always described here what is new or changed text.
I don’t think it’s a difficult thing, but it would help translators a lot.

v0lt
19th April 2022, 15:40
Easy way to see changes for any language:
1. Open URL - https://github.com/Aleksoid1978/MPC-BE/tree/master/src/apps/mpcresources/text
2. Open a text file of the desired language.
3. Click the "History" link.
4. Select commit by date and find the change for your file in it.

I think git can give the total differences between the given dates. But it's much more difficult.

It is difficult for me to notify about all the changes in translations.
Also, different translators translate at different intervals. Someone updates the translation during the day, someone once a month.

s0meone_new
19th April 2022, 21:40
I translated all the new changes. (I hope so :D)
Here is the link again: https://www103.zippyshare.com/v/RndwIip5/file.html

cmhrky
20th April 2022, 16:03
Can you add support for these as well?

https://www.youtube.com/c/trtworld/live
https://www.youtube.com/channel/UC7fWeaHhqgM4Ry-RMpM2YYw/live

Aleksoid1978
21st April 2022, 01:27
For playback live streaming - install LAV Filters.

cmhrky
21st April 2022, 01:33
LAV filters installed, but MPC-BE built-in YouTube parser cannot open such addresses.

Aleksoid1978
21st April 2022, 04:12
LAV filters installed, but MPC-BE built-in YouTube parser cannot open such addresses.
Opened - but long time(menu items in playlist) and without live streams.

P.S. Added special processing for such "live" urls.

hirahi
21st April 2022, 09:05
If you set the video renderer to EVR or EVR-CP
Audio can be played, but video is not displayed.

MPC-HC is displayed without any problem.

OS Windows11 home
CPU 12th Gen Core i5 12400
memory 16GB
Sound Sound Blaster Z SE
GPU Intel UHD Graphics 730
Player MPC-BE 1.6.2.7009
MPC-HC 1.9.21.2

Aleksoid1978
21st April 2022, 11:31
If you set the video renderer to EVR or EVR-CP
Audio can be played, but video is not displayed.

MPC-HC is displayed without any problem.

OS Windows11 home
CPU 12th Gen Core i5 12400
memory 16GB
Sound Sound Blaster Z SE
GPU Intel UHD Graphics 730
Player MPC-BE 1.6.2.7009
MPC-HC 1.9.21.2

It's Intel driver's issue. Rename mpc-be.exe -> mpc-hc.exe and video will be displayed.
Say hello crooked developers :)

hirahi
21st April 2022, 14:32
It's Intel driver's issue. Rename mpc-be.exe -> mpc-hc.exe and video will be displayed.
Say hello crooked developers :)

After renaming mpc-be.exe to mpc-hc.exe and playing it, the screen is displayed.

v0lt
21st April 2022, 15:32
@s0meone_new
Thanks. Updated April 17th.


@hirahi
This problem was described in early February (https://forum.doom9.org/showthread.php?p=1963601#post1963601). Owners of 12-series processors should be active and write about it to Intel.

huhn
21st April 2022, 17:48
that this ever happened is already an insult that they didn't fix it yet makes it very clear to me that intel GPU should be avoid.

Sunspark
21st April 2022, 21:50
I find it surreal that this renaming thing is even a thing that needs to be done. I cannot explain how that could have happened.

GPU wise though, Intel might be a strong competitor this year with their Arc line of discrete GPUs. 5 SKUs ranging from 6 to 32 Xe cores, 6 to 32 ray tracing units, 4 to 16 GB of ram. That last SKU needs 120-150 watts of power. Lowest SKU for laptops needs 25-35 watts.

huhn
21st April 2022, 22:14
they either have a blacklist (unlikely) and mpc-be is blocked.
or they use a whitelist and mpc-be is not on it.

this is for 99% intentional they should be ashamed.

nevcairiel
21st April 2022, 22:21
The most likely explanation is that there is some bug in the rendering that both mpc-hc and mpc-be share, but Intel only has a profile to override it for mpc-hc (because its more popular, presumably). This is rather common with graphics drivers.
Assuming some kind of malice is just for sad people.

clsid
21st April 2022, 22:31
Does renaming MPC-HC give the same problem?
Does it also happen with vanilla EVR?

huhn
21st April 2022, 22:50
according to user reports both EVR and EVR-CP.

The most likely explanation is that there is some bug in the rendering that both mpc-hc and mpc-be share, but Intel only has a profile to override it for mpc-hc (because its more popular, presumably). This is rather common with graphics drivers.

based on the file name not the file description?

Assuming some kind of malice is just for sad people.
my argument is that the black screen is taking into account for other application thanks to a "rushed" or bad fix not to harm mpc-be.

hirahi
22nd April 2022, 01:25
Does renaming MPC-HC give the same problem?
Does it also happen with vanilla EVR?

When I change the video renderer to EVR and EVR-CP, rename it from MPC-HC to MPC-BE, and play the video, no video appears.

Only the video renderer without renaming the file
If you change it, it will play without any problem.

cmhrky
22nd April 2022, 01:28
Can you add the "Zoom +" and "Zoom -" commands to the zoom options? The 50%, 100%, 200% and Zoom Auto Fit commands are insufficient to set intermediate values. It is also really difficult to adjust intermediate values with the mouse. It might be nice to set it up with mouse and keyboard shortcuts. (Alt + 5, Alt + 6, Ctrl + Mouse Wheel Up / Down ...)

I saw that the "Zoom Window +/-" option was added to the Keys settings in MPC-HC. I wish MPC-BE had this option as well. :(


Also I want to set the size 443 x 323 to remove the black spaces at the top and bottom, but cannot set a size smaller than 460 x 390.
My settings: Options > Player > Window size > Windows size at startup > Standart windows size (443 x 330)

https://i.hizliresim.com/jt5kdo0.jpg

Sunspark
22nd April 2022, 02:53
Also I want to set the size 443 x 323 to remove the black spaces at the top and bottom, but cannot set a size smaller than 460 x 390.
My settings: Options > Player > Window size > Windows size at startup > Standart windows size (443 x 330)


You can remove the black bars in the video frame settings "touch window from outside" instead of inside.

Is this a solution, or do you really need a very small window?

v0lt
22nd April 2022, 04:30
I saw that the "Zoom Window +/-" option was added to the Keys settings in MPC-HC. I wish MPC-BE had this option as well. :(
Num1 and Num9?

Also I want to set the size 443 x 323 to remove the black spaces at the top and bottom, but cannot set a size smaller than 460 x 390.
My settings: Options > Player > Window size > Windows size at startup > Standart windows size (443 x 330)
Someone already asked this question.
The minimum window width is determined by the presence of a menu and a toolbar with navigation buttons.

Oops. I found a typo that caused the saved window sizes to be ignored if the width was in the range 460-479.

I reduced the minimum possible window size to 300x200 in 1.6.2.7011. But, as I said, the menu and toolbar will increase the width of the window if necessary.

cmhrky
22nd April 2022, 05:01
You can remove the black bars in the video frame settings "touch window from outside" instead of inside.

Is this a solution, or do you really need a very small window?

Most of the time I use it with small windows.

Num1 and Num9?

Not image size. Window size.


Oops. I found a typo that caused the saved window sizes to be ignored if the width was in the range 460-479.

I reduced the minimum possible window size to 300x200 in 1.6.2.7011. But, as I said, the menu and toolbar will increase the width of the window if necessary.

Ok. Thanks.

cmhrky
22nd April 2022, 05:11
P.S. Added special processing for such "live" urls.

Thanks.

When I try to open it from a m3u playlist or Favorites it does not open with the warning "Cannot render the file".

...and is there a way to open it with "Load playlist" disabled?

Aleksoid1978
23rd April 2022, 01:55
Thanks.

When I try to open it from a m3u playlist or Favorites it does not open with the warning "Cannot render the file".

...and is there a way to open it with "Load playlist" disabled?

No, because it's "detect" as playlist.

cmhrky
23rd April 2022, 12:15
I wanted to open this type of url without using yt-dlp but unfortunately it didn't work for me. I usually open this type of url from Favorites and m3u playlist.

Aleksoid1978
23rd April 2022, 12:33
I wanted to open this type of url without using yt-dlp but unfortunately it didn't work for me. I usually open this type of url from Favorites and m3u playlist.

Enable "Load playlist".