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. |
|
|
#381 | Link | |
|
PgcEdit daemon
Join Date: Jul 2003
Posts: 4,833
|
Quote:
__________________
r0lZ PgcEdit homepage (hosted by VideoHelp) Mirror (in Belgium) Unofficial mirror (in Poland) |
|
|
|
|
|
|
#382 | Link | ||
|
PgcEdit daemon
Join Date: Jul 2003
Posts: 4,833
|
Quote:
Quote:
__________________
r0lZ PgcEdit homepage (hosted by VideoHelp) Mirror (in Belgium) Unofficial mirror (in Poland) |
||
|
|
|
|
|
#383 | Link | |
|
PgcEdit daemon
Join Date: Jul 2003
Posts: 4,833
|
Quote:
But, as it's easy to do for me, I may add it... @jeanl: selyb wants a save option integrated in the warning dialog.
__________________
r0lZ PgcEdit homepage (hosted by VideoHelp) Mirror (in Belgium) Unofficial mirror (in Poland) |
|
|
|
|
|
|
#384 | Link | |
|
Registered User
Join Date: Dec 2004
Location: shreveport
Posts: 79
|
Quote:
Code:
if {$::dvd_modified && $code == 0 && !$::config(expert_mode)} {
set r [tk_messageBox -message "The DVD has been modified.\n\nOK to quit?" \
-icon warning -title "PgcEdit" -type yesno -default no]
if {$r == "no"} return
}
Code:
if {$::dvd_modified && $code == 0 && !$::config(expert_mode)} {
set r [tk_messageBox -message "The DVD has been modified.\n\nDo you want to save first?" \
-icon warning -title "PgcEdit" -type yesnocancel -default yes]
if {$r == "cancel"} return
if {$r == "yes"} {::main::Write_DVD false}
}
Code:
if {$::dvd_modified && !$::config(expert_mode)} {
set r [tk_messageBox -message "The DVD has been modified.\n\nAre you sure?" \
-icon warning -title "PgcEdit" -type yesno -default no]
if {$r == "no"} {return 0}
}
Code:
if {$::dvd_modified && !$::config(expert_mode)} {
set r [tk_messageBox -message "The DVD has been modified.\n\nDo you want to save first?" \
-icon warning -title "PgcEdit" -type yesnocancel -default yes]
if {$r == "cancel"} {return 0}
if {$r == "yes"} {::main::Write_DVD false}
}
|
|
|
|
|
|
|
#385 | Link | |
|
Registered User
Join Date: Dec 2004
Location: shreveport
Posts: 79
|
Quote:
Code:
if {$::tr::tracemode} ::tr::dvd_trace
Code:
proc Read_New_DVD {args} {
if {$::dvd_modified && !$::config(expert_mode)} {
set r [tk_messageBox -message "The DVD has been modified.\n\nDo you want to save first?" \
-icon warning -title "PgcEdit" -type yesnocancel -default yes]
if {$r == "cancel"} {return 0}
if {$r == "yes"} {::main::Write_DVD false}
}
if {$args == ""} {
unset -nocomplain ::tr::breakpoints ;# reset breakpoints of Trace mode
set initialdir $::config(initialdir)
while true {
set dvddir [tk_chooseOldDirectory -initialdir $initialdir \
-parent . -title "PgcEdit: Open DVD folder"]
if {$dvddir == ""} return
Code:
set ::tr::wm_main_window $w
if {[winfo exists $w] && [winfo ismapped $w]} {
cleanexit
return
}
Code:
set ::tr::wm_main_window $w
if {[winfo exists $w] && [winfo ismapped $w]} {
cleanexit
return
} else {set ::tr::tracemode 1}
|
|
|
|
|
|
|
#386 | Link |
|
Registered User
Join Date: Sep 2004
Location: California, USA
Posts: 2,022
|
selyb,
I think you're the first one to starting hacking into PgcEdit! Amazing! Jeanl
__________________
A few PgcEdit guides. DVDSubEdit a free tool to edit subtitles directly inside the vob. |
|
|
|
|
|
#387 | Link |
|
PgcEdit daemon
Join Date: Jul 2003
Posts: 4,833
|
I have added some similar code in the new version, to save if needed before quitting/opening a new DVD. However, your method will ask to save the DVD if you reopen it. IMHO, it is not useful in this case.
Also, my method to open trace mode is identical to yours, except I have suggested to set the code in pgcedit.user.tcl (which is a post script opened automatically if it exists after the whole initialization was done) because it doesn't require to recreate the standalone exe. Since this feature seems to be appreciated, I will add an option to automatically go to trace mode whan a DVD is opened, in the Options menu.
__________________
r0lZ PgcEdit homepage (hosted by VideoHelp) Mirror (in Belgium) Unofficial mirror (in Poland) |
|
|
|
|
|
#388 | Link | |||
|
Registered User
Join Date: Dec 2004
Location: shreveport
Posts: 79
|
Quote:
![]() Quote:
Quote:
|
|||
|
|
|
|
|
#389 | Link | |
|
PgcEdit daemon
Join Date: Jul 2003
Posts: 4,833
|
Quote:
Code:
dvd_modified false false Code:
set errcode [Read_New_DVD $::dvddir]
__________________
r0lZ PgcEdit homepage (hosted by VideoHelp) Mirror (in Belgium) Unofficial mirror (in Poland) |
|
|
|
|
|
|
#390 | Link |
|
Registered User
Join Date: Dec 2004
Location: shreveport
Posts: 79
|
btw, the reason i added
Code:
set ::tr::wm_main_window $w
if {[winfo exists $w] && [winfo ismapped $w]} {
cleanexit
return
} else {set ::tr::tracemode 1}
if you use ctrl+t to open trace mode, the tracemode variable does not get set and the checkmark on the menu is not present i found this out because i use that variable as a check to see if i need to call dvd_trace |
|
|
|
|
|
#391 | Link |
|
PgcEdit daemon
Join Date: Jul 2003
Posts: 4,833
|
Right. I have also added this variable assignment in the final version.
__________________
r0lZ PgcEdit homepage (hosted by VideoHelp) Mirror (in Belgium) Unofficial mirror (in Poland) |
|
|
|
|
|
#392 | Link | |
|
Registered User
Join Date: Dec 2004
Location: shreveport
Posts: 79
|
Quote:
maybe you could also add a message to 'proc ReRead_DVD' to ask "Are you sure you want to Reopen the DVD and lose all changes?" |
|
|
|
|
|
|
#393 | Link |
|
PgcEdit daemon
Join Date: Jul 2003
Posts: 4,833
|
That's what I did.
__________________
r0lZ PgcEdit homepage (hosted by VideoHelp) Mirror (in Belgium) Unofficial mirror (in Poland) |
|
|
|
|
|
#394 | Link |
|
PgcEdit daemon
Join Date: Jul 2003
Posts: 4,833
|
PgcEdit 0.5.7 beta 1
PgcEdit 0.5.7 beta 1 available.
It's not an important release. I've just made some cosmetics changes, including an option to hide the hex codes in the main window. Since this option was not easy to implement, I may have broken something. So, use this beta with care, and, if you experience some problems, please report them here. Thanks.
__________________
r0lZ PgcEdit homepage (hosted by VideoHelp) Mirror (in Belgium) Unofficial mirror (in Poland) |
|
|
|
|
|
#395 | Link | |
|
DVD & DVB Drifter
Join Date: Jan 2005
Location: The Land Downunder
Posts: 519
|
Re: PgcEdit 0.5.7 beta 1
Quote:
I'd figured "Sheme/Scheme" had actually been shortened to fit on the button. While on the subject, the IFO File Association dialog box uses the word "overwrited". English grammar would dictate that "overwritten" would be correct.
__________________
Cheers........ZacOz "The trouble with having an open mind, of course, is that people will insist on coming along and trying to put things in it." (Terry Pratchett, Diggers) |
|
|
|
|
|
|
#396 | Link | |
|
Registered User
Join Date: Dec 2004
Location: shreveport
Posts: 79
|
Re: PgcEdit 0.5.7 beta 1
Quote:
i dont see it
|
|
|
|
|
|
|
#397 | Link |
|
PgcEdit daemon
Join Date: Jul 2003
Posts: 4,833
|
Right. My fault. I have moved the beta files in the right directory now.
@zacoz and everybody: BTW, if you find more english grammar/vocabulary errors in PgcEdit, please let me know.
__________________
r0lZ PgcEdit homepage (hosted by VideoHelp) Mirror (in Belgium) Unofficial mirror (in Poland) |
|
|
|
|
|
#399 | Link |
|
PgcEdit daemon
Join Date: Jul 2003
Posts: 4,833
|
The captured image is always in the original format of the VOB, without any modification or resizing. If your VOB is NTSC, you will capture a NTSC frame. Same for PAL.
Note that a 16:9 anamorphic image has exactly the same resolution as a 4:3 image. It is the responsability of the player to resize it. So, all images you will save with PgcEdit will be 4:3 images. I will not change that. If you want to convert the image to another format, resize it with a paint program. You will be able to use the best antialiazing method for the current image.
__________________
r0lZ PgcEdit homepage (hosted by VideoHelp) Mirror (in Belgium) Unofficial mirror (in Poland) Last edited by r0lZ; 16th May 2005 at 16:35. |
|
|
|
|
|
#400 | Link | |
|
Registered User
Join Date: Dec 2004
Location: shreveport
Posts: 79
|
Quote:
Suggested- Store backup folder in parent of VIDEO_TS folder Current- Adjust Command Editor window size Suggested- Auto-adjust Command Editor window to contents Current- Tearoff menus? Suggested- Allow Menu Tearoffs. Current- Highlight Errors and GOTO Targets? (Don't Detect All ERRORS!) Suggested- Hi-lite Errors and GOTO Targets? (Doesn't Detect All ERRORS!) Current- Popup menus on right mouse button released? Suggested- Popup menu when right mouse button released? or Popup menu on right mouse button release? Current- Automatically renumber GOTOs upon cmds insert/delete? Suggested- Auto renumber GOTOs when cmds added/removed? Current- Save Setups Suggested- Save Settings Last edited by selyb; 17th May 2005 at 01:59. |
|
|
|
|
![]() |
| Thread Tools | |
| Display Modes | |
|
|