Search found 355 matches
- 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: 94
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...
- Tue Nov 28, 2023 7:45 pm
- Forum: Blu-ray and UHD Authoring: EasyBD, Blu-Disc Studio, IGEditor and Quick BD Menu
- Topic: Blu-Disc Studio beta versions
- Replies: 148
- Views: 138825
Re: Blu-Disc Studio beta versions
4.6.1.2115:
+ Bugfixes.
+ Bugfixes.
- 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: 67
Re: Loading in javascript code
I added delay for the loading stages in the JAR settings in the latest beta.
- 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: 94
Re: Sound Up Sound Down
I added functions manager.getLevel() and manager.getDB().
So now you can use
So now you can use
Code: Select all
if (manager.getLevel() == 1.0f) {
manager.moveToXY("F:PM_****.***", ***, ***);
}
- Mon Nov 27, 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: 148
- Views: 138825
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".
+ Added delay for the loading stages.
+ Added functions getLevel() and getDB().
+ Added "Project properties" → Menu → "Menu end action".
- 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: 94
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.

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.
- 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: 67
Re: Loading in javascript code
Hi,
Well... currently not, but I can add a delay for loading stages.
Well... currently not, but I can add a delay for loading stages.
- 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: 94
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....
- Sun Nov 26, 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: 148
- Views: 138825
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.
+ 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.
- 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: 540
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, ...)
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, ...)