Search found 405 matches

by Alexey Kolesnikov
Wed Nov 29, 2023 4:58 pm
Forum: Blu-ray and UHD Authoring: EasyBD, Blu-Disc Studio, IGEditor and Quick BD Menu
Topic: Sound Up Sound Down
Replies: 7
Views: 3154

Re: Sound Up Sound Down

manager.getPlaybackRate() just returns the current playback rate. It does not say which button was pressed. There is no function that says which button was pressed. But you can assign an action for the "Next track" and "Prev track" in the "Remote controls buttons" section of each menu/popup/movie/pl...
by Alexey Kolesnikov
Mon Nov 27, 2023 5:19 pm
Forum: Blu-ray and UHD Authoring: EasyBD, Blu-Disc Studio, IGEditor and Quick BD Menu
Topic: Loading in javascript code
Replies: 6
Views: 3638

Re: Loading in javascript code

I added delay for the loading stages in the JAR settings in the latest beta.
by Alexey Kolesnikov
Mon Nov 27, 2023 5:17 pm
Forum: Blu-ray and UHD Authoring: EasyBD, Blu-Disc Studio, IGEditor and Quick BD Menu
Topic: Sound Up Sound Down
Replies: 7
Views: 3154

Re: Sound Up Sound Down

I added functions manager.getLevel() and manager.getDB().
So now you can use

Code: Select all

if (manager.getLevel() == 1.0f) {
  manager.moveToXY("F:PM_****.***", ***, ***);
}
by Alexey Kolesnikov
Sun Nov 26, 2023 9:05 pm
Forum: Blu-ray and UHD Authoring: EasyBD, Blu-Disc Studio, IGEditor and Quick BD Menu
Topic: Sound Up Sound Down
Replies: 7
Views: 3154

Re: Sound Up Sound Down

well... to use Java you need to learn Java :)

This is a function that sets the value:
manager.setLevel(1.0f);

But you right - I need to add getLevel() and getDB() to get values. Will add in the next beta.
by Alexey Kolesnikov
Sun Nov 26, 2023 7:11 pm
Forum: Blu-ray and UHD Authoring: EasyBD, Blu-Disc Studio, IGEditor and Quick BD Menu
Topic: Loading in javascript code
Replies: 6
Views: 3638

Re: Loading in javascript code

Hi,

Well... currently not, but I can add a delay for loading stages.
by Alexey Kolesnikov
Sun Nov 26, 2023 6:02 pm
Forum: Blu-ray and UHD Authoring: EasyBD, Blu-Disc Studio, IGEditor and Quick BD Menu
Topic: Sound Up Sound Down
Replies: 7
Views: 3154

Re: Sound Up Sound Down

Hi, There are 2 functions available in script: 1) manager.setLevel(float level) https://docs.oracle.com/javame/config/cdc/opt-pkgs/api/jsr927/javax/media/GainControl.html#setLevel(float) 2) manager.setDB(float db) https://docs.oracle.com/javame/config/cdc/opt-pkgs/api/jsr927/javax/media/GainControl....
by Alexey Kolesnikov
Sun Nov 26, 2023 5:16 pm
Forum: Blu-ray and UHD Authoring: EasyBD, Blu-Disc Studio, IGEditor and Quick BD Menu
Topic: Blu-Disc Studio beta versions
Replies: 167
Views: 263886

Re: Blu-Disc Studio beta versions

4.6.1.2112:
+ Added delay for the loading stages.
+ Added functions getLevel() and getDB().
+ Added "Project properties" → Menu → "Menu end action".
by Alexey Kolesnikov
Sat Nov 25, 2023 4:09 pm
Forum: Blu-ray and UHD Authoring: EasyBD, Blu-Disc Studio, IGEditor and Quick BD Menu
Topic: Blu-Disc Studio beta versions
Replies: 167
Views: 263886

Re: Blu-Disc Studio beta versions

4.6.1.2111:
+ Fixed subtitles rendering with new engine.
+ Tools → Options → Interface → Log window font size.
+ Fixed Library filter.
+ Fixed HDR colors conversion.
+ Index generation engine for tsMuxer updated.
by Alexey Kolesnikov
Sun Nov 12, 2023 3:39 pm
Forum: Blu-ray and UHD Authoring: EasyBD, Blu-Disc Studio, IGEditor and Quick BD Menu
Topic: Java code Current subtitles and audio
Replies: 5
Views: 4289

Re: Java code Current subtitles and audio

1 means played
0 means pause
positive means forward (so for forward it just returns the current speed that may be any number like 2, 10, ...)
negative means rewind (the same as above, but negative: -2, -10, ...)