cdrtfe

cdrtfe是一个用于Microsoft Windows的开源CD / DVD / BD刻录应用程序。cdrtfe 是 cdrtools、Mode2CDMaker、VCDImager 的前端。(cdrtfe is an open source CD/DVD/BD burning application for Microsoft Windows. cdrtfe is a win32 frontend for the cdrtools (cdrecord, mkisofs, readcd, cdda2wav), Mode2CDMaker, VCDImager and other well-known tools.)

  • Owner: UdoKifferbrehl/cdrtfe
  • Platform: Windows
  • License:: Other
  • Category::
  • Topic:
  • Like:
    0
      Compare:

Github stars Tracking Chart

cdrtfe是一个用于Microsoft Windows的开源CD /DVD /BD刻录应用程序。 您可以刻录数据光盘,音频CD,XCD,(S)VCD和DVD视频光盘。 它支持ISO映像和可引导光盘的创建和写入。 光盘映像和音频CD可以同时写入多个写入器。

cdrtfe是cdrtools(cdrecord,mkisofs,readcd,cdda2wav),Mode2CDMaker,VCDImager和其他众所周知的工具的win32前端。

cdrtfe具有多语言界面,也可作为便携版本使用。适用于Windows 98,ME,2000,XP,Vista,7,8,8.1,10。

cdrtfe是自版本1.1pre4(GNU通用公共许可证)以来的免费软件。

特性。cdrtfe支持以下功能:

  • 创建数据光盘(CD,DVD,BD)
  • 多区段CD支持
  • 从wav,mp3,flac,ogg文件创建(无间隙)音频CD
  • 写入光盘映像(ISO,BIN /CUE),将光盘保存到ISO映像
  • 将音轨提取为wav,mp3,flac或ogg
  • 写(S)VCD
  • 从VIDEO_TS文件夹创建DVD-Video光盘
  • 快速和全擦除可擦写光盘
  • 创建XCD,可以像往常一样包含大约13%的数据(模式2表格2:738 MiByte而不是650 MiByte,795 MiByte而不是700 MiByte)。
  • 通过ShellExtension进行可选的Windows资源管理器集成
  • 使用cdrtools(cdrecord,mkisofs,...)和其他众所周知的工具作为后端
  • 项目文件
  • 可以与命令行选项一起使用
  • 多语言支持
  • 通过RSCSI支持远程驱动器
  • 将光盘映像和音频CD同时刻录到多个写入器

Overview

Name With OwnerUdoKifferbrehl/cdrtfe
Primary LanguagePascal
Program languagePascal (Language Count: 3)
PlatformWindows
License:Other
Release Count39
Last Release Namev.1.5.6 (Posted on )
First Release Namev1.0.09.0 (Posted on )
Created At2016-10-22 11:51:33
Pushed At2016-10-22 11:52:21
Last Commit At2016-09-14 10:24:31
Stargazers Count3
Watchers Count2
Fork Count0
Commits Count634
Has Issues Enabled
Issues Count0
Issue Open Count0
Pull Requests Count0
Pull Requests Open Count0
Pull Requests Close Count0
Has Wiki Enabled
Is Archived
Is Fork
Is Locked
Is Mirror
Is Private

cdrtfe - cdrtools/Mode2CDMaker/VCDImager Frontend

Copyright (c) 2010-2016 Oliver Valencia
Copyright (c) 2008-2009 Oliver Valencia, Fabrice Tiercelin
Copyright (c) 2004-2008 Oliver Valencia
Copyright (c) 2002-2004 Oliver Valencia, Oliver Kutsche

General notes on compiling cdrtfe

  • cdrtfe should compile using Delphi 7 to Delphi 2007, tested with
    Delphi 7 Personal and Turbo Delphi Explorer 2006.

  • cdrtfe is not unicode capable. So it will not compile on newer
    versions of Delphi (Delphi 2009 to Delphi XE4). If it compiles anyway,
    it will not work correctly.

  • You may need to adjust the output path for the compiled executable
    (project options).

  • cdrtfe should be compiled with a detailed map file as this file is
    needed for a better exception handling (you will get detailed
    information where in the source code the exception occurred). The
    map file can be converted to a much smaller jdbg file with
    MakeJclDbg.exe from the JCL.

External third party components

  • cdrtfe makes use of several external third party components (for a
    complete list see info.txt):

    • JCL/JVCL
    • Vampyre Imaging Library
    • Drag and Drop Component Suite 5.2
    • Mustangpeak Common Library, Mustangpeak EasyListview,
      Mustangpeak VirutalShellTools
    • Virtual Treeview component
    • Windows 7 Component Library
  • These libraries and components are completely independent of the
    cdrtfe project. They are copyrighted by their respective authors.

  • Depending on the settings in the file directives.inc you may not need
    all of these components.

  • Except for some smaller components these external third party
    components are not included in the cdrtfe source archive. You may
    download them from the cdrtfe download section at sourceforge
    (http://sourceforge.net/projects/cdrtfe/files/other). These archives
    only include those parts of the libraries and components that are
    really necessary for a successful compilation of cdrtfe.

  • Extract these archives into the appropriate folder in the subfolder
    imports.

  • Beginning with cdrtfe 1.5.0.1 all these components will be bundled
    into one archive thirdparty-comp-.rar where is the version
    number of cdrtfe which needs this archive to compile.

DelphiShellControls / VirtualShellTools

  • cdrtfe can be either compiled using the DelphiShellControls or the
    VirtualShellTools.

  • By default the DelphiShellControls are used. You can change this in
    the file directives.inc:
    Change the line
    {$DEFINE xUseVirtualShellTools}
    to
    {$DEFINE UseVirtualShellTools}

  • To use the DelphiShellControls copy the files ShellConsts.pas and
    ShellCtrls.pas into the folder imports\ShellControls. These files
    are not provided by any cdrtfe download as they are part of Delphi,
    you can find them in the Delphi Demo folder. Before using the
    DelphiShellControls you may want to apply the patch ShellCtrls.patch.

  • When using the VirtualShellTools and depending on your Delphi version,
    you may get an compile error that the unit GraphUtil.dcu could not
    be found. In this case remove the reference to GraphUtil in
    VirtualTrees.pas, Line 4011:
    Change
    VTAccessibilityFactory, GraphUtil; // accessibility helper class
    to
    VTAccessibilityFactory{, GraphUtil}; // accessibility helper class

To the top