import DialogEx from "./DialogEx"; import DialogTitle from "@mui/material/DialogTitle"; import DialogContent from "@mui/material/DialogContent"; import Toolbar from "@mui/material/Toolbar"; import IconButtonEx from "./IconButtonEx"; import ArrowBackIcon from "@mui/icons-material/ArrowBack"; import Typography from "@mui/material/Typography"; import Link from "@mui/material/Link"; import Tone3000DownloadType from "./Tone3000DownloadType"; function Tone3000HelpDialog(props: { open: boolean; downloadType: Tone3000DownloadType onClose: () => void; }) { const { open, downloadType, onClose } = props; return ( { onClose(); }} onClose={() => { onClose(); }} open={open}> { onClose(); }} > TONE3000 Help
{downloadType === Tone3000DownloadType.CabIr && ( <> The TONE3000 website provides a massive collection of high-quality Neural Amp Modeler models that can be used by TooB Neural Amp Modeler. It also provides collections of cabinet Impulse Response (I/R) files that can be used with TooB Cab IR. When you click on the button to download I/R files from TONE3000, selected I/R bundles will be directly downloaded from the TONE3000 website and uploaded to your PiPedal server. For this to work, the server must have internet access, and your client (Android app or browser) must have internet access as well. If either of your devices does not have internet access, you can still use TONE3000. Use a browser on a device with internet access to download model files by connecting to https://www.tone3000.com and download model packs directly to your local device. You can then upload the model .zip files to the PiPedal Server using the Upload button in the File Properties dialog in the PiPedal app or web interface. PiPedal will extract I/R files from the .zip file bundles automatically, so there is no need to extract them first. )} {downloadType === Tone3000DownloadType.Nam && ( <> The TONE3000 website provides a massive collection of high-quality Neural Amp Modeler files that can be used by TooB Neural Amp Modeler to perform high-quality simulations of amps and effect pedals. When you click on the button to download Neural Amp Modeler files from TONE3000, model file bundles will be directly downloaded from the TONE3000 website and uploaded to your PiPedal server. For this to work, the server must have internet access, and your client (Android app or browser) must have internet access as well. Neural Amp Modeler models that simulate amp heads will typically need a speaker/cabinet simulation to sound their best, or of course, need to be played through an actual physical amp speaker cabinet. The TONE3000 website provides a broad selection of cabinet I/R files that can be used with TooB Cab IR to provide high-quality cabinet simulation for your NAM models. TooB Cab IR allows you to browse and download I/R files from TONE3000 directly within the PiPedal app. If either of your devices does not have internet access, you can still use TONE3000. Use a browser on a device with internet access to download Neural Amp Modeler files by connecting to https://www.tone3000.com and download Neural Amp Modeler file packs directly to your local device as .zip file bundles. You can then upload the .zip file bundle to the PiPedal Server using the Upload button in the File Properties dialog. PiPedal will extract model files from the .zip archives automatically, so there is no need to extract them first. )} TONE3000 is a community-driven platform where community members share Neural Amp Modeler profiles. The site showcases the collaborative spirit of the guitar modeling community, made possible by Steven Atkins' Neural Amp Modeler library, which forms the foundation and core of TooB Neural Amp Modeler and other NAM-based plugins. If you would like to profile your own amplifiers and effects, the TONE3000 website allows you to generate your own NAM profiles for free. Refer to the TONE3000 Capture page for more details. When you click on the TONE3000 link, you will be taken to an external website. The TONE3000 website is not part of PiPedal and is not affiliated in any way with PiPedal. Privacy statement: PiPedal has no access to personal data used by the TONE3000 website. Please refer to the TONE3000 Privacy Policy for information on how your data is used by TONE3000.
); } export default Tone3000HelpDialog;