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"; function Tone3000HelpDialog(props: { open: boolean; onClose: () => void; }) { const { open, onClose } = props; return ( { onClose(); }} onClose={() => { onClose(); }} open={open}> { onClose(); }} > TONE3000 Help
The TONE3000 website provides a massive collection of neural amp models that can be used by TooB Neural Amp Modeler. Using TONE3000 model files in PiPedal is a two step process. First, download model files from the website using your browser; and then upload the files in your browser's Downloads directory to the PiPedal server using the Upload button. PiPedal automatically extracts bundles of model files from zip archives, so manual extraction is unnecessary. 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. And all of this is 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 website 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;