@@ -12,9 +12,13 @@ const audaversion = audacityReleases.version;
1212import DownloadButton from " ../../components/button/DownloadButton" ;
1313import Audacity_Logo from " ../../assets/img/Audacity_Logo.svg" ;
1414import DownloadMuseHubButton from " ../../components/button/DownloadMuseHubButton" ;
15+ import SplitDownloadButton from " ../../components/button/SplitDownloadButton" ;
1516---
1617
17- <BaseLayout title =" Download Audacity AI Plugins" description =" Enhance your editing with a variety of AI effects, such as noise reduction, music separation and more!" >
18+ <BaseLayout
19+ title =" Download Audacity AI Plugins"
20+ description =" Enhance your editing with a variety of AI effects, such as noise reduction, music separation and more!"
21+ >
1822 <section id =" main" >
1923 <div
2024 class =" flex flex-col items-center py-8 md:pt-10 md:pb-12 lg:pt-16 lg:pb-20 xl:pt-20 xl:pb-24 mx-6"
@@ -28,40 +32,84 @@ import DownloadMuseHubButton from "../../components/button/DownloadMuseHubButton
2832 Get AI effects for Audacity
2933 </h1 >
3034 <div class =" flex w-full sm:w-fit flex-col gap-2 sm:flex-row mt-8" >
31- <a
32- class =" flex flex-col justify-center bg-blue-700 hover:bg-blue-600 rounded-md items-center text-center py-3 w-full sm:w-96"
33- href ={ win [0 ].browser_download_url }
34- >
35- <div class =" flex gap-2 items-center" >
36- <span class =" icon icon-import text-white" ></span >
37- <p class =" button-text font-semibold text-white" >
38- Download OpenVINO AI Plugins
39- </p >
40- </div >
41- <p class =" button-caption text-white" >
42- Revision { revision } for Audacity { version }
43- </p >
44- </a >
35+ <SplitDownloadButton
36+ OS =" Windows"
37+ kind =" OpenVINO"
38+ releaseData ={ win }
39+ client:load
40+ />
41+ <SplitDownloadButton
42+ OS =" macOS"
43+ kind =" OpenVINO"
44+ releaseData ={ mac }
45+ client:load
46+ />
47+ </div >
48+
49+ <div
50+ class =" prose prose-blue mx-6 sm:mx-12 md:mx-24 lg:mx-auto pt-16 pb-40"
51+ >
52+ {
53+ /* display a warning when openvino and Audacity are different versions*/
54+ version === audaversion ? (
55+ " "
56+ ) : (
57+ <b >
58+ Warning: The OpenVINO plugins are not yet compatible with the
59+ latest Audacity version
60+ </b >
61+ )
62+ }
63+ <p class =" mt-2" >The following effects are available:</p >
64+ <ul class =" list-disc space-y-2 mt-2" >
65+ <li >
66+ <dt class =" font-semibold" >Music separation</dt >
67+ <dd class =" ml-2" >
68+ Separate a mono or stereo track into individual stems -- Drums,
69+ Bass, Vocals, & Other Instruments.
70+ </dd >
71+ </li >
72+ <li >
73+ <dt class =" font-semibold" >Noise suppression</dt >
74+ <dd class =" ml-2" >
75+ Reduce background noise in a recording. Works best on spoken word
76+ audio.
77+ </dd >
78+ </li >
79+ <li >
80+ <dt class =" font-semibold" >Music generation and continuation</dt >
81+ <dd class =" ml-2" >
82+ Uses MusicGen LLM to generate snippets of music, or to generate a
83+ continuation of an existing snippet of music.
84+ </dd >
85+ </li >
86+ <li >
87+ <dt class =" font-semibold" >Whisper transcription</dt >
88+ <dd class =" ml-2" >
89+ Transcribe audio to text using OpenAI's Whisper model. Tip: You
90+ can export the resulting label track as a subtitle file via File →
91+ Export other → Export labels.
92+ </dd >
93+ </li >
94+ <li >
95+ <dt class =" font-semibold" >Audio Super resolution</dt >
96+ <dd class =" ml-2" >
97+ Increase the sampling rate of an audio signal – in other words, it
98+ upsamples audio to improve its fidelity, clarity, or compatibility
99+ with high-resolution standards. Useful for older 8kHz recordings,
100+ such as telephone calls.
101+ </dd >
102+ </li >
103+ </ul >
104+
105+ <div class =" mt-12" >
106+ Further information: <a
107+ href =" https://forum.audacityteam.org/tag/openvino" >Help forum</a
108+ > | <a href =" https://github.com/intel/openvino-plugins-ai-audacity"
109+ >GitHub</a
110+ >
111+ </div >
45112 </div >
46- { /* display a warning when openvino and Audacity are different versions*/
47- version === audaversion ? (
48- " "
49- ) : (
50- <b >
51- Warning: The OpenVINO plugins are not yet compatible with the latest
52- Audacity version
53- </b >
54- )
55- }
56- </div >
57- <div class =" prose prose-blue mx-6 sm:mx-12 md:mx-24 lg:mx-auto pt-16 pb-40" >
58- <h2 >Installation instructions</h2 >
59- <ol >
60- <li >Download and run the installer.</li >
61- <li >In the installer, select the effects and models you'd like to use.</li >
62- <li >Restart Audacity.</li >
63- </ol >
64- <div class =" mt-12" >Further information: <a href =" https://forum.audacityteam.org/tag/openvino" >Help forum</a > | <a href =" https://github.com/intel/openvino-plugins-ai-audacity" >GitHub</a ></div >
65113 </div >
66114 </section >
67115</BaseLayout >
0 commit comments