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. |
![]() |
#61 | Link |
Registered User
Join Date: Dec 2004
Posts: 3
|
some tests made...need --threads
made some tests AMD 64 3000+@2400MHz vs. AMD X2 3800+
getting over 50-105% boost when setting: SetMTMode(2,0) and rest of my avisynth script and setting number of threads to 2 in megui http://www.avisynth.org/tsp/avisynth256MT3.zip was used, x264 version 380 and CE Highprofile from sharktooth's profiles (turbomode disabled)....same profile was used in staxrip settings. stax could you add threads setting to your x264 configuration options.... nice to get all out of my X2 ![]() Last edited by juskixxx; 29th November 2005 at 14:07. |
![]() |
![]() |
#62 | Link | |
Registered User
Join Date: Jun 2002
Location: On thin ice
Posts: 6,809
|
new version available:
Quote:
![]()
__________________
https://github.com/stax76/software-list https://www.youtube.com/@stax76/playlists Last edited by stax76; 29th November 2005 at 18:37. |
|
![]() |
![]() |
#63 | Link | |
stupid
Join Date: Sep 2004
Location: Cologne
Posts: 638
|
Quote:
![]()
__________________
cu Joe ------------------------ freedom is just another word for nothing left to loose |
|
![]() |
![]() |
#64 | Link | |||
Registered User
Join Date: Nov 2001
Posts: 9,770
|
Quote:
Quote:
Quote:
btw the one and only right expression for pixel aspect ratio in avc is "SAR" (sample aspect ratio). the avc standard also doesnt know "display aspect ratio", meaning dar has to be recalculated to the correct sar, but you propably know that already
__________________
Between the weak and the strong one it is the freedom which oppresses and the law that liberates (Jean Jacques Rousseau) I know, that I know nothing (Socrates) MPEG-4 ASP FAQ | AVC/H.264 FAQ | AAC FAQ | MP4 FAQ | MP4Menu stores DVD Menus in MP4 (guide) Ogg Theora | Ogg Vorbis use WM9 today and get Micro$oft controlling the A/V market tomorrow for free |
|||
![]() |
![]() |
#65 | Link | |||
Registered User
Join Date: Jun 2002
Location: On thin ice
Posts: 6,809
|
Quote:
Quote:
Quote:
__________________
https://github.com/stax76/software-list https://www.youtube.com/@stax76/playlists |
|||
![]() |
![]() |
#66 | Link |
Registered User
Join Date: Jul 2002
Posts: 7
|
Feedback
Just a little feedback. I was trying to install the external programs using the download method built into StaxRip. Everything seems to work fine but BeSweet and VirtualDubMod always come up as unknown versions even when installed thru StaxRip.
-Moat Update: I tracked it down to: If VersionDate.ToShortDateString = FileHelp.GetLastWriteTime( path).ToUniversalTime.ToShortDateString Then It's the .ToUniversaltime that causes it. It changes my date of VirtualDubMod.exe to 3-9-2004 instead of 3-8-2004. If I remove it everything works fine. Last edited by Moat; 30th November 2005 at 15:58. Reason: Update |
![]() |
![]() |
#67 | Link |
Registered User
Join Date: Jun 2002
Location: On thin ice
Posts: 6,809
|
Great you know VB .NET, maybe you can help me to tackle this issue. I don't get it since I took the date for all applications using universal time, needless to to say here it works.
Code:
Public Class VirtualDubModPackage Inherits Package Public Sub New() Name = "VirtualDubMod" Filename = "VirtualDubMod.exe" Version = "1.5.10.1 build 2439" Website = "http://virtualdubmod.sourceforge.net" Description = "VirtualDubMod is derived from VirtualDub and supports additional formats." VersionDate = New DateTime(2004, 3, 8) DownloadFilename = "VirtualDubMod_1.5.10.1_build_2439.zip" TreeFolder = "Video Processing" End Sub Public Overrides Function IsRequired() As Boolean Return TypeOf p.VideoEncoder Is VirtualDubEncoder AndAlso _ Not DirectCast(p.VideoEncoder, VirtualDubEncoder).UseVirtualDub End Function End Class Private Sub DebugCopyDateCodeClick(ByVal sender As Object, ByVal e As EventArgs) Dim dt As DateTime = FileHelp.GetLastWriteTime(ActivePackage.GetPath(False)).ToUniversalTime Clipboard.SetDataObject("New DateTime(" + dt.Year.ToString + ", " + dt.Month.ToString + ", " + dt.Day.ToString + ")", True) End Sub edit: the bug is what you spotted VersionDate get converted to universal date (it is already universal date)
__________________
https://github.com/stax76/software-list https://www.youtube.com/@stax76/playlists Last edited by stax76; 30th November 2005 at 20:40. |
![]() |
![]() |
#68 | Link | |
Registered User
Join Date: Jun 2002
Location: On thin ice
Posts: 6,809
|
new version available:
Quote:
![]() Since the files were extracted with wrong date you have to download them again. Disabling the warnings about wrong versions would also work but I cannot suggest this. edit: probably the bug is still there, maybe tomorrow I have more luck ![]() edit 2: after reading usenet I found out dealing with file times at some place at some time it is doomed to fail (timezones, daylight saving times, wrong os or bios date, very long tool chain (reading/writing dates (packing/unpacking again reads/writes dates)) etc. etc.). As example, the .NET API to get the last write date for a file returns a different date as the windows explorer here! I could use a checksum (.NET has algorithms built in but it would probably be too slow for large files) assuming file attributes like time have no influence on this. Using the filesize is problematic as well, it was the first approach used in DVX and it turned out some applications had a different version but same filesize. ![]()
__________________
https://github.com/stax76/software-list https://www.youtube.com/@stax76/playlists Last edited by stax76; 1st December 2005 at 00:44. |
|
![]() |
![]() |
#69 | Link |
Registered User
Join Date: May 2005
Posts: 146
|
MD5 its pretty fast , .ComputeHash can do it fast !
maybe you can take a look . http://support.microsoft.com/default...3&SD=MSDN&FR=1 |
![]() |
![]() |
#70 | Link |
Registered User
Join Date: Jun 2002
Location: On thin ice
Posts: 6,809
|
It would have a noticeable impact I think as I loop through all packages to validate them before showing some dialogs. (I'm using MD5 in quite a few locations in StaxRip btw.
![]() I'm not making much progress these days so what I'm gonna do is continue to use to compare the last write days but simply make a tolerence of two days!
__________________
https://github.com/stax76/software-list https://www.youtube.com/@stax76/playlists Last edited by stax76; 1st December 2005 at 11:20. |
![]() |
![]() |
#72 | Link |
stupid
Join Date: Sep 2004
Location: Cologne
Posts: 638
|
I want to add a custom Audio profile. Can someone give a tip how to do? I want to add a new AAC profile.
__________________
cu Joe ------------------------ freedom is just another word for nothing left to loose |
![]() |
![]() |
#73 | Link | |
Registered User
Join Date: Jun 2002
Location: On thin ice
Posts: 6,809
|
Quote:
Generally you create new profiles in the profiles dialog. Regardless of what profile it is the dialog to manage profiles is always the same. With "Add" you create a new profile. It opens a selection with profiles usually starting with "Current" what are the current settings following with "factory" defaults so what you pick is "Current". Your customizations need to be done before of course using the "Edit" option in the drop down button in the main dialog which opens the configuration menu of the audio settings. I hope it's clear now. I really have to think if it can be done more intuitive, please let me know if you any ideas. I might see things sometimes too much from a developer view and not enough from user view.
__________________
https://github.com/stax76/software-list https://www.youtube.com/@stax76/playlists Last edited by stax76; 3rd December 2005 at 12:14. |
|
![]() |
![]() |
#74 | Link |
Registered User
Join Date: Mar 2005
Location: Portugal
Posts: 907
|
Hi!
I have to say i was never a big fan of your Dvx program mainly because i had to track the right versions of the programs to make it work, but now with StaxRip that has changed(button to download the right version, nicer gui, customization of the menu for foreign language users and a lot more) only thing missing is the DMF format support but judging by your posts here on doom9 youre are already working on it. Ps: i havent compared the encoding times but being a user of AutoGk and avi.net it seems StaxRip is a bit slower, but like i said i havent compared it. Good work! |
![]() |
![]() |
#75 | Link | |
Registered User
Join Date: Nov 2001
Posts: 9,770
|
Quote:
![]() no, thats not a joke...
__________________
Between the weak and the strong one it is the freedom which oppresses and the law that liberates (Jean Jacques Rousseau) I know, that I know nothing (Socrates) MPEG-4 ASP FAQ | AVC/H.264 FAQ | AAC FAQ | MP4 FAQ | MP4Menu stores DVD Menus in MP4 (guide) Ogg Theora | Ogg Vorbis use WM9 today and get Micro$oft controlling the A/V market tomorrow for free |
|
![]() |
![]() |
#76 | Link |
Registered User
Join Date: Mar 2005
Location: Portugal
Posts: 907
|
feature request
would it be possible that when converting dvdsubs to Divxmedia format the user could change the position onscreen of the subs?
Let me explain: At the moment im creating my divx files by converting the dvd with AutoGk and adding subs with srt2bmp, why? lets say i have 2 tvs one being 4:3 and the other 16:9. at the moment with srt2bmp i can create one sub stream to be played on the black bars instead of on the video when viweing the video on a 4:3 tv, and another substream to positioned on the bottom of the picture when viewing it on a 16:9 tv.(one divx file with 2 different sub streams for different tvs) when converting dvds with autogk and avi.net they will put the subs on the video, if the video has an aspect of 2:35:1 the picture is already small when played on a 4:3 tv, subs on the video will only make it worst, thats why i use srt2bmp to make the subs appear on the black bars. i know its probably a bit confusing but this is a feature no other program has at the moment(that im aware) Ricardo |
![]() |
![]() |
#77 | Link | |
Registered User
Join Date: Mar 2005
Location: Portugal
Posts: 907
|
Quote:
i meant converting the dvd to Dmf maintaing chapters, selectable audio and subs(xsubs) more here: http://forum.doom9.org/showthread.php?t=89718 http://labs.divx.com/archives/000066.html Last edited by ricardo.santos; 3rd December 2005 at 18:42. |
|
![]() |
![]() |
#78 | Link | |
Registered User
Join Date: Jun 2002
Location: On thin ice
Posts: 6,809
|
Quote:
__________________
https://github.com/stax76/software-list https://www.youtube.com/@stax76/playlists |
|
![]() |
![]() |
#80 | Link | |
Registered User
Join Date: Jun 2002
Location: On thin ice
Posts: 6,809
|
new version available:
Quote:
edit: I wasn't able to get DivXMux to work and nobody confirmed success using it so DMF support is delayed until I can use DivXMux.
__________________
https://github.com/stax76/software-list https://www.youtube.com/@stax76/playlists Last edited by stax76; 5th December 2005 at 22:30. |
|
![]() |
![]() |
Tags |
gui, h.264, h.265, hevc, mkv, x264, x265 |
Thread Tools | Search this Thread |
Display Modes | |
|
|