Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 01/07/2017 in all areas

  1. That's more like it! Date Picker solves the problem of blanks on the form ... and gives the format I need for comparisons. Thanks to you both.
    2 points
  2. ripdad

    _WMI_InstancesOf_v2.25

    This function (version 1), was developed solely for applications I needed it for. It was only tested with Class names that was needed in those scripts. And so, I didn't want to release it by itself because I knew it needed some more work before I did that. Recently, I delved back into it after several years and am now releasing version 2, which was mostly rewritten over the past several weeks. What does it do? It retrieves the properties and values pertaining to your computer, operating system and devices. All you need is a valid Win32 Class Name. So, here it is -- let me know if you have any issues! Updated to v2.25, January 14, 2017 Download: _WMI_InstancesOf_v2.25.au3
    1 point
  3. Over the last few years I have been doing a lot of Audio (CD & DVD) research, trying many open source and freeware programs. That includes WAV, AC3, DTS, FLAC, APE etc Stereo and Surround Sound files. It also includes video from JPG, BMP, PNG etc sources. I talk a little about LOSSY and LOSSLESS files in Post #3. Some of you may have read my posts (kind of blog) in Chat about my large project, Audio DVD Producer, and thus seen the many screenshots and know somewhat of my trials and tribulations. While doing testing of course, I tried a lot of programs, and some I even made tools of via my own Frontends. I still use and update some of them, as many are very useful in their own right, and allow me to do a number of things in stages, in a much more controlled manner compared to my larger project. So because of that, I thought I would share them here. Some have been mentioned in that Chat topic. Recommended Programs: I use foobar2000 (with DTS Decoder plugin) to play DTS WAV files and DTS-CD. It also has a simulated multichannel plugin for headphones. For checking M2V files and finished DVD etc, I use Media Player Classic and if necessary VLC Media Player (and others). Required 3rd Party Programs: ArcSoft DTS Decoder (DLL's) (ArcSoft TotalMedia Theatre) (eac3to use) (mentioned here) --> (DTS-to-WAV) eac3to.exe (eac3to) --> (DTS-to-WAV) ffdcaenc.exe (Ffdcaenc) or here flac.exe (FLAC) --> (SoXcutterFE) (DTS-to-WAV v2.3) gain.exe (Ac3Filter Tools) --> (SoXcutterFE) spdifer.exe (Ac3Filter Tools) --> (DTS-to-WAV) valdec.exe (Ac3Filter Tools) --> (DTS-to-WAV) (SoXcutterFE) joinwav.exe (Joinwav) --> (JPG-to-M2V) MediaInfo.exe (MediaInfo) --> (DTS-to-WAV) PgcDemux.exe (PgcDemux) --> (DTS-to-WAV) sox.exe (SoX) --> (SoXcutterFE) I have had trouble with some versions of SoX, with 14.4.1 being the one I use. 14.4.2 crashes for me. ssrc_hp.exe or ssrc.exe (Shibatch) --> (DTS-to-WAV v2.3) tranzcode.exe (Tranzcode) Some info here AUDIO CD & DVD TOOLBOX (source scripts were developed in AutoIt v3.3.0.0 so may need modifying to compile with latest AutoIt) SoXcutterFE SoXcutterFE v1.2.zip SoXcutterFE v1.2 (source).zip BAT Examples.zip I made this one over the last week, and it is part of an unfinished DTS CD ripping, burning & editing guide, that you can read here. DTS-to-WAV Program to convert WAV, DTS, AC3, FLAC & VOB (IFO required) to suitable audio files for DTS CD or DVD. Screenshots and information about update can be found at Post #14. DTS-to-WAV v2.0.zip 335.54 kB (1,078 downloads) DTS-to-WAV v2.0 (source).zip 10.82.54 kB (655 downloads) DTS-to-WAV v2.3.zip DTS-to-WAV v2.3 (source).zip (712 previous downloads) NOTE - While this is a stand-alone program, it does create right-click registry entries for DTS, WAV, FLAC, AC3, IFO files. A shortcut with a parameter of /unreg will remove the registry entries, though they will get created again every time the program runs. To stop them being created, you can (after using the unregister shortcut), add the value of '1' back into the 'Settings.ini' file as 'registry=1' in the [Context Entry] section. To use the program in that scenario, you would need to drag a WAV file etc onto the program EXE or a shortcut for that (or create a BAT file for it, etc). The installer I normally use for my programs, creates all the necessary shortcuts, which was overlooked when I created this zip version for others. All that said, the best way to use the program is by right-clicking on your WAV etc file. (source script was developed in AutoIt v3.3.0.0 so may need modifying to compile with latest AutoIt) I made this one early on in my research, but gave it a good update in the last week, with many improvements. This one does require you to have, at the very least, a Trial version of an ArcSoft program, for its DTS dlls for DTS decoding. In my Audio DVD Producer program, I currently use the free Tranzcoder program to do much the same thing, but it does fail on occasion with some HD DTS WAV files, that require something like the ArcSoft decoder. This tool is good for turning a 5.1 DTS or AC3 DVD track into a DTS-CD. JPG-to-M2V Program to convert JPG, BMP, PNG files to a M2V video file, suitable for DVD, MKV or M2TS/TS file, when muxed with audio. Screenshots and Update information (required 3rd party programs) can be seen at Post #10. Post #15. Post #19. Post #20. Post #21. Post #26. Read other posts for related info. JPG-to-M2V v1.5.zip 481.13 kB (921 downloads) JPG-to-M2V v1.5 (sources).zip 26.62 kB (375 downloads) JPG-to-M2V v1.8.zip 502.14 kB (180 downloads) (both re-upped again due to an introduced bug) (3) JPG-to-M2V v1.8 (sources).zip 37.53 kB (134 downloads) JPG-to-M2V v1.9.zip JPG-to-M2V v1.9 (source).zip This was also made early on, and I am in the midst of giving it a very big update, to work with multiple image files (something that Audio DVD Producer does not yet do to this degree). **** more to come ****
    1 point
  4. Yep, works better now, IMO. Great job.
    1 point
  5. In my code you can find an example of forcing a four digit year in the control: ; force a four digit year in the date control GUICtrlSendMsg($idDate1, 0x1032, 0, LongYearFormat()) ; what is this magic? GUICtrlSendMsg($idDate2, 0x1032, 0, LongYearFormat()) ; https://www.autoitscript.com/forum/topic/93701-how-to-format-date-time-picker-selected-date/#comment-673255 [Melba23] and Func LongYearFormat() ; convert yy to yyyy Local $iID = _WinAPI_GetUserDefaultLCID(), _ $sFormat = _WinAPI_GetLocaleInfo($iID, $LOCALE_SSHORTDATE) $sFormat = StringRegExpReplace($sFormat, '(?i)(\byy\b)', 'yyyy') Return $sFormat EndFunc ;==> LongYearFormat With modification, you can force the calendar to always return mm/dd/yyyy (or similar). Then you can swap the order very easily. There are various ways you can do this. Edit: Or use DTP like @zone97 suggested.
    1 point
  6. seangriffin

    Rapid Menu Writer

    Rapid Menu Writer is a wizard for creating very simple DVD menus. Rapid Menu Writer is fast and efficient! It can add a menu to a DVD in seconds, and uses only a fraction of your hard disk space. Examples of how Rapid Menu Writer can be used include: adding a menu to a DVD merged by DVDFabadding a menu to a DVD re-authored by DVDShrinkBACKGROUND: I wrote this tool because I could not find a reliable solution for adding a menu to a DVD without re-authoring the entire structure of the DVD. There are guides on the internet explaining how to combine various tools to avoid re-authoring, yet the process is awkward to follow, and unnecessarily complicated for the end user (who simply wants to add a menu to their DVD prior to burning). The closest tool I found to performing this task is called TitleWriter, by FAllenAngel. Unfortunately, the software failed to work for me several times, and I gave up using it. Other DVD authoring packages tend to re-create, or re-author, the entire DVD structure. If you consider a typical DVD is approximately 4.7Gb in size, the re-authoring process results in a new copy of the DVD - also 4.7Gb in size. Add to this the time it takes to re-author a DVD, and the act of simply adding a menu becomes a major undertaking. Rapid Menu Writer automates two well known software packages (PgcEdit and DVDStyler) in a manner that takes the difficulty out of adding a menu to a DVD. The result is a very simple to use and reliable wizard that anyone can use. REQUIREMENTS: PgcEdit (versions 8.5, 8.6 and 9.2 supported)DVDStyler (v1.7.2 supported)Note:- Other versions of these programs may work, but have not been tested. INSTALLATION: Simply download and run Rapid Menu Writer below. DOWNLOAD: Latest Version - v1.3 (21/09/09) Rapid Menu Writer 13.exe Rapid Menu Writer.au3
    1 point
×
×
  • Create New...