Welcome to Doom9's Forum, THE in-place to be for everyone interested in DVD conversion.

Before you start posting please read the forum rules. By posting to this forum you agree to abide by the rules.

 

Go Back   Doom9's Forum > General > Subtitles

Reply
 
Thread Tools Search this Thread Display Modes
Old 26th December 2024, 11:42   #1901  |  Link
Emulgator
Big Bit Savings Now !
 
Emulgator's Avatar
 
Join Date: Feb 2007
Location: close to the wall
Posts: 1,805
Quote:
Is there some way I can bind a single keyboard key -- any key -- to run it via the following...
AutoHotKey (here an example for IrfanView Thumbnails Autoload if navigating focus through folders)
Code:
SetTitleMatchMode, 2
#IfWinActive IrfanView Thumbnails
SetKeyDelay, 0, 0
Down::
Send {Down}
Send {Alt}
Send o
Send u
return
Up::
Send {Up}
Send {Alt}
Send o
Send u
return
__________________
"To bypass shortcuts and find suffering...is called QUALity" (Die toten Augen von Friedrichshain)
"Data reduction ? Yep, Sir. We're that issue working on. Synce invntoin uf lingöage..."

Last edited by Emulgator; 26th December 2024 at 11:44.
Emulgator is offline   Reply With Quote
Old 26th December 2024, 20:57   #1902  |  Link
markfilipak
Registered User
 
markfilipak's Avatar
 
Join Date: Jul 2016
Location: Mansfield, Ohio (formerly, Silicon Valley in California)
Posts: 352
Quote:
Originally Posted by Emulgator View Post
AutoHotKey...
You are a prince! I don't mean to disappoint you, but I don't need it now. You see, in the trial of my custom Edit profile (https://forum.doom9.org/showthread.p...93#post2012093), I had to run Beautify about 700 times. But now that I've gained confidence in my custom Edit profile I'm only running Beautify twice, at the beginning and at the end of a session, I don't need a hot key for something I only run twice. Thank you, though. You are a prince.
markfilipak is offline   Reply With Quote
Old 26th December 2024, 21:20   #1903  |  Link
markfilipak
Registered User
 
markfilipak's Avatar
 
Join Date: Jul 2016
Location: Mansfield, Ohio (formerly, Silicon Valley in California)
Posts: 352
suggestion for simultaneously moving both cues

This would be a real time saver. Instead of moving sub1's out-cue and then sub2's in-cue, move them both, simultaneously.

Click sub1's out-cue and drag it to the right and it will eventually hit sub2's in-cue. When it does, drag them both!

Click sub2's in-cue and drag it to the left and it will eventually hit sub1's out-cue. When it does, drag them both!

Reversing direction during the drag drops the 'carried' cue where it is, but continues to drag the clicked cue, but in the new direction. That opens a gap between them.
markfilipak is offline   Reply With Quote
Old 27th December 2024, 19:32   #1904  |  Link
markfilipak
Registered User
 
markfilipak's Avatar
 
Join Date: Jul 2016
Location: Mansfield, Ohio (formerly, Silicon Valley in California)
Posts: 352
[_<_Previous_] [_Play_current_] and [_Next_>_] play about 100ms past their actual out-cues. That's unwanted behavior. Is there a way to stop it? I couldn't find a setting.
markfilipak is offline   Reply With Quote
Old 28th December 2024, 03:22   #1905  |  Link
markfilipak
Registered User
 
markfilipak's Avatar
 
Join Date: Jul 2016
Location: Mansfield, Ohio (formerly, Silicon Valley in California)
Posts: 352
# signifies what appears to be a hex digit.
################-1.wav is a particular SE waveform file. SE _does_not_ reload it, so the prior waveforms _do_not_ appear.
If I rename it to
################-0.wav, SE _does_ reload it, so the prior waveforms _do_ appear.

This appears to be yet another off-by-one problem. I'm running SE 4.0.8 because I had too many problems with 4.0.9.

Last edited by markfilipak; 28th December 2024 at 03:24.
markfilipak is offline   Reply With Quote
Old 28th December 2024, 07:04   #1906  |  Link
markfilipak
Registered User
 
markfilipak's Avatar
 
Join Date: Jul 2016
Location: Mansfield, Ohio (formerly, Silicon Valley in California)
Posts: 352
Nikse, If you're going to grant focus to the List area on mouse-over, I suggest you remove its focus on mouse-out. When I try to delete a searched item in the Text box, SE wants to delete the current List subtitle, instead.

Currently (4.0.8) both show focus (by highlighted text), but only the List actually has the focus, not the Text box, which is where the mouse cursor is.

Last edited by markfilipak; 28th December 2024 at 07:11.
markfilipak is offline   Reply With Quote
Old 28th December 2024, 13:17   #1907  |  Link
Emulgator
Big Bit Savings Now !
 
Emulgator's Avatar
 
Join Date: Feb 2007
Location: close to the wall
Posts: 1,805
The suffix -0, -1, -2... is the audio track index.
https://forum.doom9.org/showthread.php?t=185943
(I have extended that post for the legacy case of non-suffixed waveforms)
If there is only one track (the first one), one should give index -0, pointing to -1 under these circumstances would be invalid.
My findings: The older than January 2023 files in my \Waveforms folder have no track index appended.
Within January 2023 I have both, track index and none; and the later ones have track index appended.
(Since I work from different SE versions and merge results there is no sharp border found)
Conclusion: SE versions before ~January 2023 seem to work on the first found audio stream, so do not append/respect any track index.
The later SE versions which can load more than one audio track would need to append/respect that track index.
__________________
"To bypass shortcuts and find suffering...is called QUALity" (Die toten Augen von Friedrichshain)
"Data reduction ? Yep, Sir. We're that issue working on. Synce invntoin uf lingöage..."

Last edited by Emulgator; 28th December 2024 at 13:26.
Emulgator is offline   Reply With Quote
Old 28th December 2024, 15:45   #1908  |  Link
markfilipak
Registered User
 
markfilipak's Avatar
 
Join Date: Jul 2016
Location: Mansfield, Ohio (formerly, Silicon Valley in California)
Posts: 352
Quote:
Originally Posted by Emulgator View Post
The suffix -0, -1, -2... is the audio track index. ...
Thanks.

Track 0 was Dolby Digital stereo. Track 1 was DTS-HDMA 7.1, FC channel. This was yesterday, not 2023.

I suggest that Nikse save the wav as ################.wav and rely on the user remembering which index he/she extracted. Actually, the index is not important. Don't be anal compulsive.

Last edited by markfilipak; 28th December 2024 at 16:01.
markfilipak is offline   Reply With Quote
Old 28th December 2024, 16:05   #1909  |  Link
markfilipak
Registered User
 
markfilipak's Avatar
 
Join Date: Jul 2016
Location: Mansfield, Ohio (formerly, Silicon Valley in California)
Posts: 352
Quote:
Originally Posted by Emulgator View Post
... The later SE versions which can load more than one audio track would need to append/respect that track index.
Really?! How does one load more than one audio track (index, actually)? Why would one do that?
markfilipak is offline   Reply With Quote
Old 29th December 2024, 03:45   #1910  |  Link
markfilipak
Registered User
 
markfilipak's Avatar
 
Join Date: Jul 2016
Location: Mansfield, Ohio (formerly, Silicon Valley in California)
Posts: 352
This has happened twice today. The MPV panel shows play-pause as paused and ready to play, while at the same time, the waveform panel shows play-pause as playing and ready to pause. The video will not play, no matter what I click. This appears to happen if I generate wavs _before_ beutification.

From experience, I do know that generating wavs _after_ beutification often malfunctions: The first attempt to generate wavs closes with no action.-- it has to be done a second time.

Last edited by markfilipak; 29th December 2024 at 03:50.
markfilipak is offline   Reply With Quote
Old 5th January 2025, 21:59   #1911  |  Link
markfilipak
Registered User
 
markfilipak's Avatar
 
Join Date: Jul 2016
Location: Mansfield, Ohio (formerly, Silicon Valley in California)
Posts: 352
focus problem

Operating these controls:
Code:
[_<_Previous_] [_Play_current_] [_Next_>_]
automatically moves the focus to the Text box. If I then move the mouse pointer to the wavs and press [_space_]...
What should happen: video play resumes
What does happen: the current subtitle text is replaced by a space.

These settings:
Code:
[x] Set focus on mouse enter
   [x] Also set list view focus on mouse enter in list view
have no effect on this fault.

Workaround: click on the wav before pressing [_space_].

Verions 4.0.8.

Last edited by markfilipak; 5th January 2025 at 22:17.
markfilipak is offline   Reply With Quote
Old 12th January 2025, 19:53   #1912  |  Link
markfilipak
Registered User
 
markfilipak's Avatar
 
Join Date: Jul 2016
Location: Mansfield, Ohio (formerly, Silicon Valley in California)
Posts: 352
Suggestion for easier control

I have a suggestion how to speed up these controls.
Code:
[_<_Previous_] [_Play_current_] [_Next_>_]
               [____Pause_____]

1 -     Change [_Play_current_]
            to [_Play_/_Pause_]
Behavior:
While playing, [_Play_/_Pause_] immediately pauses.
While paused, [_Play_/_Pause_] re-initializes repeat, but resumes playing at the point it left off.
When the end of the text is reached, it automatically resumes with the next repeat, if any.

Code:
2 -     Remove [____Pause_____]
It is no longer needed.

That way, I could watch the Waveform and pause at a particular point without having to move my mouse to hit the lower button -- I'm not very good at that. Bonus: It would be great if I could 'split' exactly at that pause-point.
markfilipak is offline   Reply With Quote
Old 20th January 2025, 23:30   #1913  |  Link
markfilipak
Registered User
 
markfilipak's Avatar
 
Join Date: Jul 2016
Location: Mansfield, Ohio (formerly, Silicon Valley in California)
Posts: 352
Rebind keys to waveform

Alt+V : Jumps the waveform to the previous subtitle and runs it.
Alt+N : Jumps the waveform to the next subtitle and runs it.
They are not listed in 'Settings', 'Shortcuts'.

Can I change Alt+v to Control+Left?
Can I change Alt+N to Control+Right?

How?

Thanks!
markfilipak is offline   Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 21:58.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2025, vBulletin Solutions Inc.