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 > Capturing and Editing Video > VapourSynth

Reply
 
Thread Tools Search this Thread Display Modes
Old 26th July 2018, 00:38   #61  |  Link
lansing
Registered User
 
Join Date: Sep 2006
Posts: 1,657
The gui version, when indexing to a existed d2v, there's no prompt warning about overwriting the existing file.
lansing is offline   Reply With Quote
Old 22nd February 2019, 08:00   #62  |  Link
_Al_
Registered User
 
Join Date: May 2011
Posts: 321
Is there any way to catch that printing progress (1% .... 56%... etc) for dv2witch command line using subprocess in Python, I have no luck to get it to stdout or stderr, or I cannot do it, something like this:
Code:
import threading
import subprocess
class Cmd(threading.Thread):
    def __init__(self):
        threading.Thread.__init__(self)
        process = subprocess.Popen(         
             [d2vwitch, '--output', output, file],
             stdout=subprocess.PIPE)
        line = ''
        for char in iter(lambda: process.stdout.read(1).decode('utf-8'), ''):
            line +=char
            if char == '\r':
                print(line)
                line = ''
            
file = 'C:/HDV TAPE 44/tape 44-2013_09_28-10_29_29.m2t'
d2vwitch = shutil.which('d2vwitch')
output = 'C:/temp/out.d2v'
command = Cmd()
command.start()
command.join()
no problem getting actual d2v, just that progress, I tried stdout, stderr or returncode, and it looks empty.
This is for windows but I tried it on linux and, the same, no luck.

Last edited by _Al_; 22nd February 2019 at 08:03.
_Al_ is offline   Reply With Quote
Old 22nd February 2019, 20:33   #63  |  Link
_Al_
Registered User
 
Join Date: May 2011
Posts: 321
oh, sorry, it is in stderr, it's ok
_Al_ is offline   Reply With Quote
Old 28th March 2019, 12:55   #64  |  Link
ChaosKing
Registered User
 
Join Date: Dec 2005
Location: Germany
Posts: 1,795
I noticed that D2V Witch v2 freezed if I click on File->open video files. Drag and drop works <-- I always used this
Runing it via cmd or powershell works too but it looks like the program is still running because it "pauses" at the end with d2vwitch.exe --output abc.d2v VTS_01_CHAPTER_05_1.VOB or just d2vwitch.exe --help

My os: win10 x64 pro 1809
__________________
AVSRepoGUI // VSRepoGUI - Package Manager for AviSynth // VapourSynth
VapourSynth Portable FATPACK || VapourSynth Database

Last edited by ChaosKing; 28th March 2019 at 12:59.
ChaosKing is offline   Reply With Quote
Old 28th March 2019, 13:59   #65  |  Link
jackoneill
unsigned int
 
jackoneill's Avatar
 
Join Date: Oct 2012
Location: 🇪🇺
Posts: 760
Quote:
Originally Posted by ChaosKing View Post
I noticed that D2V Witch v2 freezed if I click on File->open video files. Drag and drop works <-- I always used this
Runing it via cmd or powershell works too but it looks like the program is still running because it "pauses" at the end with d2vwitch.exe --output abc.d2v VTS_01_CHAPTER_05_1.VOB or just d2vwitch.exe --help

My os: win10 x64 pro 1809
I think the freezing of the graphical interface will be fixed in the next version, which will be out soon. (I started working on D2V Witch again last week.)

I'm not sure what to do about the pausing when you run it in cmd. It tries to be both a command line application and a graphical application, which is not supported in Windows.
__________________
Buy me a "coffee" and/or hire me to write code!
jackoneill is offline   Reply With Quote
Old 28th March 2019, 16:56   #66  |  Link
ChaosKing
Registered User
 
Join Date: Dec 2005
Location: Germany
Posts: 1,795
ok
One small thing: The button "Remove files" should be renamed to "Remove file" as it only removes one file
__________________
AVSRepoGUI // VSRepoGUI - Package Manager for AviSynth // VapourSynth
VapourSynth Portable FATPACK || VapourSynth Database
ChaosKing is offline   Reply With Quote
Old 30th March 2019, 01:24   #67  |  Link
ChaosKing
Registered User
 
Join Date: Dec 2005
Location: Germany
Posts: 1,795
Maybe you can also add some icons like in this fork https://github.com/emako/D2VWitch/releases
It's a nice improvement.
I also noticed that in this mod build there is no "thinking time" when adding a file. Adding a file in V2 always takes some seconds to show if the file is valid or not. In this mod it happens instantaneous.

p.s. No Open files bug
__________________
AVSRepoGUI // VSRepoGUI - Package Manager for AviSynth // VapourSynth
VapourSynth Portable FATPACK || VapourSynth Database

Last edited by ChaosKing; 30th March 2019 at 01:26.
ChaosKing is offline   Reply With Quote
Old 30th March 2019, 12:15   #68  |  Link
jackoneill
unsigned int
 
jackoneill's Avatar
 
Join Date: Oct 2012
Location: 🇪🇺
Posts: 760
Quote:
Originally Posted by ChaosKing View Post
Maybe you can also add some icons like in this fork https://github.com/emako/D2VWitch/releases
It's a nice improvement.
I also noticed that in this mod build there is no "thinking time" when adding a file. Adding a file in V2 always takes some seconds to show if the file is valid or not. In this mod it happens instantaneous.

p.s. No Open files bug
I don't know how to explain the difference in "thinking time". It's definitely not supposed to take seconds after adding a file. Does it happen with any format, any size?
__________________
Buy me a "coffee" and/or hire me to write code!
jackoneill is offline   Reply With Quote
Old 30th March 2019, 13:04   #69  |  Link
ChaosKing
Registered User
 
Join Date: Dec 2005
Location: Germany
Posts: 1,795
Now that I tested it more, yes it seems to happen for all formats and sizes. For example h265.mp4 (18mb) takes 4-5 sec, the gui turns "red". Then I click on remove files and this takes also some sec to remove it. h264.mkv (20mb) or a valid vob file (500mb) is the same. The files are on a m2 ssd

It is only "fast" if I add a h265.mkv and a "avformat_open_input failed: invalid data found" appears.


EDIT:
Found your "v3" here https://forum.doom9.org/showthread.p...82#post1803882
It's the same thing. Drag&drop the file -> gui freezes for some sec -> file is valid and shows mpeg2 video-blah or turns red if invalid.

Edit2:
File->Open files is also working in v3
__________________
AVSRepoGUI // VSRepoGUI - Package Manager for AviSynth // VapourSynth
VapourSynth Portable FATPACK || VapourSynth Database

Last edited by ChaosKing; 30th March 2019 at 13:11.
ChaosKing is offline   Reply With Quote
Old 30th March 2019, 15:39   #70  |  Link
jackoneill
unsigned int
 
jackoneill's Avatar
 
Join Date: Oct 2012
Location: 🇪🇺
Posts: 760
Quote:
Originally Posted by ChaosKing View Post
Now that I tested it more, yes it seems to happen for all formats and sizes. For example h265.mp4 (18mb) takes 4-5 sec, the gui turns "red". Then I click on remove files and this takes also some sec to remove it. h264.mkv (20mb) or a valid vob file (500mb) is the same. The files are on a m2 ssd

It is only "fast" if I add a h265.mkv and a "avformat_open_input failed: invalid data found" appears.
I can't reproduce this on a Windows 7 computer with a Pentium 4 CPU and spinning hard drive.
__________________
Buy me a "coffee" and/or hire me to write code!
jackoneill is offline   Reply With Quote
Old 1st April 2019, 12:00   #71  |  Link
ChaosKing
Registered User
 
Join Date: Dec 2005
Location: Germany
Posts: 1,795
Quote:
Originally Posted by jackoneill View Post
I can't reproduce this on a Windows 7 computer with a Pentium 4 CPU and spinning hard drive.
Can I help somehow? With a debug build maybe?
__________________
AVSRepoGUI // VSRepoGUI - Package Manager for AviSynth // VapourSynth
VapourSynth Portable FATPACK || VapourSynth Database
ChaosKing is offline   Reply With Quote
Old 1st April 2019, 16:30   #72  |  Link
jackoneill
unsigned int
 
jackoneill's Avatar
 
Join Date: Oct 2012
Location: 🇪🇺
Posts: 760
Quote:
Originally Posted by ChaosKing View Post
Can I help somehow? With a debug build maybe?
Sure. This build will print some timings at the bottom of the window when you add or remove files:
http://savedonthe.net/download/2391/...ime-win64.html

Note that this build is not suitable for other uses. It will crash if you don't use the graphical interface.
__________________
Buy me a "coffee" and/or hire me to write code!
jackoneill is offline   Reply With Quote
Old 1st April 2019, 16:51   #73  |  Link
ChaosKing
Registered User
 
Join Date: Dec 2005
Location: Germany
Posts: 1,795
With a VOB file (drag & drop):
Code:
[20190401 17:50:02] dropEvent: Getting to line 1308 took 0 ms
[20190401 17:50:02] dropEvent: Getting to line 1312 took 0 ms
[20190401 17:50:02] dropEvent: Getting to line 1316 took 0 ms
[20190401 17:50:02] dropEvent: Getting to line 1321 took 0 ms
[20190401 17:50:02] dropEvent: Getting to line 1323 took 15 ms
[20190401 17:50:02] dropEvent: Getting to line 1326 took 0 ms
[20190401 17:50:02] dropEvent: Getting to line 1328 took 0 ms
[20190401 17:50:02] dropEvent: Getting to line 1333 took 0 ms
[20190401 17:50:02] inputFilesUpdated: Getting to line 208 took 0 ms
[20190401 17:50:02] inputFilesUpdated: Getting to line 220 took 0 ms
[20190401 17:50:02] inputFilesUpdated: Getting to line 222 took 0 ms
[20190401 17:50:15] inputFilesUpdated: Getting to line 224 took 13653 ms
[20190401 17:50:15] inputFilesUpdated: Getting to line 231 took 0 ms
[20190401 17:50:15] inputFilesUpdated: Getting to line 235 took 0 ms
[20190401 17:50:15] inputFilesUpdated: Getting to line 239 took 0 ms
[20190401 17:50:15] inputFilesUpdated: Getting to line 242 took 0 ms
[20190401 17:50:15] inputFilesUpdated: Getting to line 244 took 0 ms
[20190401 17:50:15] inputFilesUpdated: Getting to line 246 took 0 ms
[20190401 17:50:15] inputFilesUpdated: Getting to line 249 took 0 ms
[20190401 17:50:15] inputFilesUpdated: Getting to line 251 took 0 ms
[20190401 17:50:15] inputFilesUpdated: Getting to line 253 took 0 ms
[20190401 17:50:15] inputFilesUpdated: Getting to line 256 took 0 ms
[20190401 17:50:15] inputFilesUpdated: Getting to line 258 took 0 ms
[20190401 17:50:15] inputFilesUpdated: Getting to line 261 took 0 ms
[20190401 17:50:15] inputFilesUpdated: Getting to line 263 took 0 ms
[20190401 17:50:15] inputFilesUpdated: Getting to line 265 took 0 ms
[20190401 17:50:15] inputFilesUpdated: Getting to line 267 took 0 ms
[20190401 17:50:15] inputFilesUpdated: Getting to line 269 took 0 ms
[20190401 17:50:15] inputFilesUpdated: Getting to line 271 took 0 ms
[20190401 17:50:15] inputFilesUpdated: Getting to line 273 took 0 ms
[20190401 17:50:15] inputFilesUpdated: Getting to line 275 took 0 ms
[20190401 17:50:15] inputFilesUpdated: Getting to line 277 took 0 ms
[20190401 17:50:15] inputFilesUpdated: Getting to line 284 took 0 ms
[20190401 17:50:15] dropEvent: Getting to line 1335 took 13653 ms
[20190401 17:50:15] dropEvent: Getting to line 1337 took 0 ms
[20190401 17:50:15] initFormat: Getting to line 56 took 0 ms
[20190401 17:50:15] initFormat: Getting to line 64 took 0 ms
[20190401 17:50:15] initFormat: Getting to line 70 took 0 ms
[20190401 17:50:15] initFormat: Getting to line 82 took 0 ms
[20190401 17:50:15] initFormat: Getting to line 94 took 0 ms
h265.mp4(drag & drop)
Code:
[20190401 17:51:57] dropEvent: Getting to line 1308 took 0 ms
[20190401 17:51:57] dropEvent: Getting to line 1312 took 0 ms
[20190401 17:51:57] dropEvent: Getting to line 1316 took 0 ms
[20190401 17:51:57] dropEvent: Getting to line 1321 took 0 ms
[20190401 17:51:57] dropEvent: Getting to line 1323 took 16 ms
[20190401 17:51:57] dropEvent: Getting to line 1326 took 0 ms
[20190401 17:51:57] dropEvent: Getting to line 1328 took 0 ms
[20190401 17:51:57] dropEvent: Getting to line 1333 took 0 ms
[20190401 17:51:57] inputFilesUpdated: Getting to line 208 took 0 ms
[20190401 17:51:57] inputFilesUpdated: Getting to line 220 took 31 ms
[20190401 17:51:57] inputFilesUpdated: Getting to line 222 took 0 ms
[20190401 17:52:23] inputFilesUpdated: Getting to line 224 took 25296 ms
[20190401 17:52:23] inputFilesUpdated: Getting to line 261 took 0 ms
[20190401 17:52:23] inputFilesUpdated: Getting to line 263 took 0 ms
[20190401 17:52:23] inputFilesUpdated: Getting to line 265 took 0 ms
[20190401 17:52:23] inputFilesUpdated: Getting to line 267 took 0 ms
[20190401 17:52:23] inputFilesUpdated: Getting to line 269 took 0 ms
[20190401 17:52:23] inputFilesUpdated: Getting to line 271 took 0 ms
[20190401 17:52:23] inputFilesUpdated: Getting to line 273 took 0 ms
[20190401 17:52:23] inputFilesUpdated: Getting to line 275 took 0 ms
[20190401 17:52:23] inputFilesUpdated: Getting to line 277 took 0 ms
[20190401 17:52:23] inputFilesUpdated: Getting to line 284 took 0 ms
[20190401 17:52:23] dropEvent: Getting to line 1335 took 25327 ms
[20190401 17:52:23] dropEvent: Getting to line 1337 took 0 ms
[20190401 17:52:23] initFormat: Getting to line 56 took 0 ms
[20190401 17:52:23] initFormat: Getting to line 64 took 0 ms
[20190401 17:52:23] initFormat: Getting to line 70 took 0 ms
[20190401 17:52:23] initFormat: Getting to line 82 took 15 ms
[20190401 17:52:23] initFormat: Getting to line 94 took 16 ms
Same VOB file via "Add files":
Code:
[20190401 17:53:40] Add files: Getting to line 585 took 6626 ms
[20190401 17:53:40] Add files: Getting to line 591 took 0 ms
[20190401 17:53:40] Add files: Getting to line 603 took 0 ms
[20190401 17:53:40] Add files: Getting to line 605 took 0 ms
[20190401 17:53:40] Add files: Getting to line 610 took 0 ms
[20190401 17:53:40] inputFilesUpdated: Getting to line 208 took 0 ms
[20190401 17:53:40] inputFilesUpdated: Getting to line 220 took 15 ms
[20190401 17:53:40] inputFilesUpdated: Getting to line 222 took 0 ms
[20190401 17:54:03] inputFilesUpdated: Getting to line 224 took 23248 ms
[20190401 17:54:03] inputFilesUpdated: Getting to line 231 took 0 ms
[20190401 17:54:03] inputFilesUpdated: Getting to line 235 took 0 ms
[20190401 17:54:03] inputFilesUpdated: Getting to line 239 took 0 ms
[20190401 17:54:03] inputFilesUpdated: Getting to line 242 took 0 ms
[20190401 17:54:03] inputFilesUpdated: Getting to line 244 took 0 ms
[20190401 17:54:03] inputFilesUpdated: Getting to line 246 took 0 ms
[20190401 17:54:03] inputFilesUpdated: Getting to line 249 took 0 ms
[20190401 17:54:03] inputFilesUpdated: Getting to line 251 took 0 ms
[20190401 17:54:03] inputFilesUpdated: Getting to line 253 took 0 ms
[20190401 17:54:03] inputFilesUpdated: Getting to line 256 took 0 ms
[20190401 17:54:03] inputFilesUpdated: Getting to line 258 took 0 ms
[20190401 17:54:03] inputFilesUpdated: Getting to line 261 took 0 ms
[20190401 17:54:03] inputFilesUpdated: Getting to line 263 took 0 ms
[20190401 17:54:03] inputFilesUpdated: Getting to line 265 took 0 ms
[20190401 17:54:03] inputFilesUpdated: Getting to line 267 took 0 ms
[20190401 17:54:03] inputFilesUpdated: Getting to line 269 took 0 ms
[20190401 17:54:03] inputFilesUpdated: Getting to line 271 took 0 ms
[20190401 17:54:03] inputFilesUpdated: Getting to line 273 took 0 ms
[20190401 17:54:03] inputFilesUpdated: Getting to line 275 took 0 ms
[20190401 17:54:03] inputFilesUpdated: Getting to line 277 took 0 ms
[20190401 17:54:03] inputFilesUpdated: Getting to line 284 took 0 ms
[20190401 17:54:03] Add files: Getting to line 613 took 23263 ms
[20190401 17:54:03] initFormat: Getting to line 56 took 0 ms
[20190401 17:54:03] initFormat: Getting to line 64 took 0 ms
[20190401 17:54:03] initFormat: Getting to line 70 took 0 ms
[20190401 17:54:03] initFormat: Getting to line 82 took 0 ms
[20190401 17:54:03] initFormat: Getting to line 94 took 15 ms

After I added the VOB file I clicked on "Use relative paths" and it also took very long. No log was generated.

And remove the vob file
Code:
[20190401 17:59:02] Remove files: Getting to line 622 took 0 ms
[20190401 17:59:02] Remove files: Getting to line 628 took 1 ms
[20190401 17:59:02] Remove files: Getting to line 631 took 0 ms
[20190401 17:59:02] Remove files: Getting to line 633 took 0 ms
[20190401 17:59:15] Remove files: Getting to line 638 took 13540 ms
[20190401 17:59:15] Remove files: Getting to line 642 took 0 ms
__________________
AVSRepoGUI // VSRepoGUI - Package Manager for AviSynth // VapourSynth
VapourSynth Portable FATPACK || VapourSynth Database

Last edited by ChaosKing; 1st April 2019 at 17:00.
ChaosKing is offline   Reply With Quote
Old 1st April 2019, 18:21   #74  |  Link
jackoneill
unsigned int
 
jackoneill's Avatar
 
Join Date: Oct 2012
Location: 🇪🇺
Posts: 760
I guess it's the NTFS permission checking, which the Qt documentation did promise it would be slow.

You can verify with this build: http://savedonthe.net/download/2392/...ime-win64.html

I added some new timing code, so please try a file before unchecking the "Slow permissions" box, and one after.
__________________
Buy me a "coffee" and/or hire me to write code!
jackoneill is offline   Reply With Quote
Old 1st April 2019, 19:22   #75  |  Link
ChaosKing
Registered User
 
Join Date: Dec 2005
Location: Germany
Posts: 1,795
[x] Slow perm. checking
Code:
[20190401 20:16:15] dropEvent: Getting to line 1339 took 0 ms
[20190401 20:16:15] dropEvent: Getting to line 1343 took 16 ms
[20190401 20:16:15] dropEvent: Getting to line 1347 took 0 ms
[20190401 20:16:15] dropEvent: Getting to line 1352 took 0 ms
[20190401 20:16:15] dropEvent: Getting to line 1354 took 0 ms
[20190401 20:16:15] dropEvent: Getting to line 1357 took 0 ms
[20190401 20:16:15] dropEvent: Getting to line 1359 took 0 ms
[20190401 20:16:15] dropEvent: Getting to line 1364 took 0 ms
[20190401 20:16:15] inputFilesUpdated: Getting to line 208 took 0 ms
[20190401 20:16:15] inputFilesUpdated: Getting to line 220 took 0 ms
[20190401 20:16:15] inputFilesUpdated: Getting to line 222 took 0 ms
[20190401 20:16:15] d2v_edit.textChanged: Getting to line 710 took 0 ms
[20190401 20:16:15] d2v_edit.textChanged: Getting to line 712 took 0 ms
[20190401 20:16:15] d2v_edit.textChanged: Getting to line 714 took 0 ms
[20190401 20:16:15] d2v_edit.textChanged: Getting to line 716 took 0 ms
[20190401 20:16:15] d2v_edit.textChanged: Getting to line 718 took 0 ms
[20190401 20:16:29] d2v_edit.textChanged: Getting to line 720 took 13585 ms
[20190401 20:16:29] d2v_edit.textChanged: Getting to line 722 took 0 ms
[20190401 20:16:29] d2v_edit.textChanged: Getting to line 724 took 0 ms
[20190401 20:16:29] d2v_edit.textChanged: Getting to line 726 took 0 ms
[20190401 20:16:29] d2v_edit.textChanged: Getting to line 728 took 0 ms
[20190401 20:16:29] inputFilesUpdated: Getting to line 224 took 13585 ms
[20190401 20:16:29] inputFilesUpdated: Getting to line 231 took 0 ms
[20190401 20:16:29] inputFilesUpdated: Getting to line 235 took 0 ms
[20190401 20:16:29] inputFilesUpdated: Getting to line 239 took 0 ms
[20190401 20:16:29] inputFilesUpdated: Getting to line 242 took 0 ms
[20190401 20:16:29] inputFilesUpdated: Getting to line 244 took 0 ms
[20190401 20:16:29] inputFilesUpdated: Getting to line 246 took 0 ms
[20190401 20:16:29] inputFilesUpdated: Getting to line 249 took 0 ms
[20190401 20:16:29] inputFilesUpdated: Getting to line 251 took 0 ms
[20190401 20:16:29] inputFilesUpdated: Getting to line 253 took 0 ms
[20190401 20:16:29] inputFilesUpdated: Getting to line 256 took 0 ms
[20190401 20:16:29] inputFilesUpdated: Getting to line 258 took 0 ms
[20190401 20:16:29] inputFilesUpdated: Getting to line 261 took 0 ms
[20190401 20:16:29] inputFilesUpdated: Getting to line 263 took 0 ms
[20190401 20:16:29] inputFilesUpdated: Getting to line 265 took 0 ms
[20190401 20:16:29] inputFilesUpdated: Getting to line 267 took 0 ms
[20190401 20:16:29] inputFilesUpdated: Getting to line 269 took 0 ms
[20190401 20:16:29] inputFilesUpdated: Getting to line 271 took 0 ms
[20190401 20:16:29] inputFilesUpdated: Getting to line 273 took 0 ms
[20190401 20:16:29] inputFilesUpdated: Getting to line 275 took 0 ms
[20190401 20:16:29] inputFilesUpdated: Getting to line 277 took 0 ms
[20190401 20:16:29] inputFilesUpdated: Getting to line 284 took 0 ms
[20190401 20:16:29] dropEvent: Getting to line 1366 took 13585 ms
[20190401 20:16:29] dropEvent: Getting to line 1368 took 0 ms
[20190401 20:16:29] initFormat: Getting to line 56 took 0 ms
[20190401 20:16:29] initFormat: Getting to line 64 took 0 ms
[20190401 20:16:29] initFormat: Getting to line 70 took 0 ms
[20190401 20:16:29] initFormat: Getting to line 82 took 0 ms
[20190401 20:16:29] initFormat: Getting to line 94 took 0 ms
[ ] Slow perm. checking
Code:
[20190401 20:17:54] dropEvent: Getting to line 1339 took 0 ms
[20190401 20:17:54] dropEvent: Getting to line 1343 took 0 ms
[20190401 20:17:54] dropEvent: Getting to line 1347 took 0 ms
[20190401 20:17:54] dropEvent: Getting to line 1352 took 0 ms
[20190401 20:17:54] dropEvent: Getting to line 1354 took 0 ms
[20190401 20:17:54] dropEvent: Getting to line 1357 took 0 ms
[20190401 20:17:54] dropEvent: Getting to line 1359 took 0 ms
[20190401 20:17:54] dropEvent: Getting to line 1364 took 0 ms
[20190401 20:17:54] inputFilesUpdated: Getting to line 208 took 0 ms
[20190401 20:17:54] inputFilesUpdated: Getting to line 220 took 16 ms
[20190401 20:17:54] inputFilesUpdated: Getting to line 222 took 0 ms
[20190401 20:17:54] d2v_edit.textChanged: Getting to line 710 took 0 ms
[20190401 20:17:54] d2v_edit.textChanged: Getting to line 712 took 0 ms
[20190401 20:17:54] d2v_edit.textChanged: Getting to line 714 took 0 ms
[20190401 20:17:54] d2v_edit.textChanged: Getting to line 716 took 0 ms
[20190401 20:17:54] d2v_edit.textChanged: Getting to line 718 took 0 ms
[20190401 20:17:54] d2v_edit.textChanged: Getting to line 720 took 0 ms
[20190401 20:17:54] d2v_edit.textChanged: Getting to line 722 took 0 ms
[20190401 20:17:54] d2v_edit.textChanged: Getting to line 724 took 0 ms
[20190401 20:17:54] d2v_edit.textChanged: Getting to line 726 took 0 ms
[20190401 20:17:54] d2v_edit.textChanged: Getting to line 728 took 0 ms
[20190401 20:17:54] inputFilesUpdated: Getting to line 224 took 0 ms
[20190401 20:17:54] inputFilesUpdated: Getting to line 231 took 0 ms
[20190401 20:17:54] inputFilesUpdated: Getting to line 235 took 0 ms
[20190401 20:17:54] inputFilesUpdated: Getting to line 239 took 0 ms
[20190401 20:17:54] inputFilesUpdated: Getting to line 242 took 0 ms
[20190401 20:17:54] inputFilesUpdated: Getting to line 244 took 0 ms
[20190401 20:17:54] inputFilesUpdated: Getting to line 246 took 0 ms
[20190401 20:17:54] inputFilesUpdated: Getting to line 249 took 0 ms
[20190401 20:17:54] inputFilesUpdated: Getting to line 251 took 0 ms
[20190401 20:17:54] inputFilesUpdated: Getting to line 253 took 0 ms
[20190401 20:17:54] inputFilesUpdated: Getting to line 256 took 0 ms
[20190401 20:17:54] inputFilesUpdated: Getting to line 258 took 0 ms
[20190401 20:17:54] inputFilesUpdated: Getting to line 261 took 0 ms
[20190401 20:17:54] inputFilesUpdated: Getting to line 263 took 0 ms
[20190401 20:17:54] inputFilesUpdated: Getting to line 265 took 0 ms
[20190401 20:17:54] inputFilesUpdated: Getting to line 267 took 0 ms
[20190401 20:17:54] inputFilesUpdated: Getting to line 269 took 0 ms
[20190401 20:17:54] inputFilesUpdated: Getting to line 271 took 0 ms
[20190401 20:17:54] inputFilesUpdated: Getting to line 273 took 0 ms
[20190401 20:17:54] inputFilesUpdated: Getting to line 275 took 0 ms
[20190401 20:17:54] inputFilesUpdated: Getting to line 277 took 0 ms
[20190401 20:17:54] inputFilesUpdated: Getting to line 284 took 0 ms
[20190401 20:17:54] dropEvent: Getting to line 1366 took 16 ms
[20190401 20:17:54] dropEvent: Getting to line 1368 took 0 ms
[20190401 20:17:54] initFormat: Getting to line 56 took 0 ms
[20190401 20:17:54] initFormat: Getting to line 64 took 0 ms
[20190401 20:17:54] initFormat: Getting to line 70 took 0 ms
[20190401 20:17:54] initFormat: Getting to line 82 took 0 ms
[20190401 20:17:54] initFormat: Getting to line 94 took 16 ms
I'll take the fast permission checking
__________________
AVSRepoGUI // VSRepoGUI - Package Manager for AviSynth // VapourSynth
VapourSynth Portable FATPACK || VapourSynth Database
ChaosKing is offline   Reply With Quote
Old 4th April 2019, 19:53   #76  |  Link
jackoneill
unsigned int
 
jackoneill's Avatar
 
Join Date: Oct 2012
Location: 🇪🇺
Posts: 760
It's not dead!

https://github.com/dubhater/D2VWitch/releases/tag/v3

Among other things, this release brings audio delay calculation, automatic indexing of vts_xx_y.vob sequences (in the command line), various bug fixes. The full list: changes.rst.

No H264 support because there are some problems to sort out. (Although no one has complained of any in a long time, so I assume it's mostly fine.) LSmash appears to work fine, anyway.
__________________
Buy me a "coffee" and/or hire me to write code!
jackoneill is offline   Reply With Quote
Old 4th April 2019, 20:30   #77  |  Link
ChaosKing
Registered User
 
Join Date: Dec 2005
Location: Germany
Posts: 1,795
Thx for the new release.
I only saw that d2v had h264 support while reading the previous posts.
__________________
AVSRepoGUI // VSRepoGUI - Package Manager for AviSynth // VapourSynth
VapourSynth Portable FATPACK || VapourSynth Database
ChaosKing is offline   Reply With Quote
Old 6th April 2019, 21:05   #78  |  Link
Selur
Registered User
 
Selur's Avatar
 
Join Date: Oct 2001
Location: Germany
Posts: 7,259
I use it for H.264 and other stuff,.. hoping for support for it to come back.
__________________
Hybrid here in the forum, homepage
Selur is offline   Reply With Quote
Old 6th April 2019, 21:52   #79  |  Link
jackoneill
unsigned int
 
jackoneill's Avatar
 
Join Date: Oct 2012
Location: 🇪🇺
Posts: 760
Quote:
Originally Posted by Selur View Post
I use it for H.264 and other stuff,.. hoping for support for it to come back.
Why do you prefer D2V Witch + the custom d2vsource over the alternatives? Just curious.
__________________
Buy me a "coffee" and/or hire me to write code!
jackoneill is offline   Reply With Quote
Old 6th April 2019, 22:17   #80  |  Link
Selur
Registered User
 
Selur's Avatar
 
Join Date: Oct 2001
Location: Germany
Posts: 7,259
For transportstreams it was more reliable in the past then using FFVideoSource or Libavsource,.. (DGDecNV also was good, but that is only available on Windows)
__________________
Hybrid here in the forum, homepage
Selur 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 06:35.


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