<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.hydrogenaudio.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=199.246.152.2</id>
	<title>Hydrogenaudio Knowledgebase - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.hydrogenaudio.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=199.246.152.2"/>
	<link rel="alternate" type="text/html" href="https://wiki.hydrogenaudio.org/index.php?title=Special:Contributions/199.246.152.2"/>
	<updated>2026-04-28T17:11:46Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.44.2</generator>
	<entry>
		<id>https://wiki.hydrogenaudio.org/index.php?title=PowerShell_Audio&amp;diff=26282</id>
		<title>PowerShell Audio</title>
		<link rel="alternate" type="text/html" href="https://wiki.hydrogenaudio.org/index.php?title=PowerShell_Audio&amp;diff=26282"/>
		<updated>2015-01-26T23:38:03Z</updated>

		<summary type="html">&lt;p&gt;199.246.152.2: /* Supported languages */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{title|PowerShell Audio}}&lt;br /&gt;
&lt;br /&gt;
{{Software Infobox&lt;br /&gt;
| name = PowerShell Audio&lt;br /&gt;
| logo =&lt;br /&gt;
| screenshot = [[Image:PowerShellAudio-logo.png|200px|PowerShellAudio Logo]]&lt;br /&gt;
| caption = audio conversion and tagging module for Windows PowerShell&lt;br /&gt;
| maintainer = [https://github.com/jherby2k/ Jebus]&lt;br /&gt;
| stable_release = [https://github.com/jherby2k/PowerShellAudio/releases/latest 1.1] (23 January 2014)&lt;br /&gt;
| operating_system = Windows&lt;br /&gt;
| use = Digital Audio conversion, tagging&lt;br /&gt;
| license = GNU LGPLv3&lt;br /&gt;
| website = [https://github.com/jherby2k/PowerShellAudio GitHub project]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=Introduction=     &lt;br /&gt;
PowerShell Audio is a PowerShell-driven interface for converting and tagging audio / music files. It is available under the Lesser GPL (v3) license, and is for Windows use only.&lt;br /&gt;
&lt;br /&gt;
== Features ==&lt;br /&gt;
* A unified interface to popular codecs (see Supported Formats).&lt;br /&gt;
* Fast and highly concurrent (&amp;quot;multi-threaded&amp;quot;) for modern, multi-core systems.&lt;br /&gt;
* ReplayGain integration:&lt;br /&gt;
** Batch-analyze thousands of files quickly,&lt;br /&gt;
** save the results to disk,&lt;br /&gt;
** convert to Apple SoundCheck format,&lt;br /&gt;
** or apply the changes directly during encoding.&lt;br /&gt;
* Metadata preservation between formats, including cover art.&lt;br /&gt;
* PowerShell interface brings powerful integration and scripting capabilities.&lt;br /&gt;
* API is open-source and extensible.&lt;br /&gt;
&lt;br /&gt;
== Supported Formats ==&lt;br /&gt;
* [[FLAC]]&lt;br /&gt;
* [[Ogg_Vorbis|Ogg Vorbis]]&lt;br /&gt;
* [[MP3]] ([[LAME]])&lt;br /&gt;
* [[Apple AAC]]&lt;br /&gt;
* [[WAV]]&lt;br /&gt;
&lt;br /&gt;
== Supported languages ==&lt;br /&gt;
* English (translation help wanted!)&lt;br /&gt;
&lt;br /&gt;
== Example Usage ==&lt;br /&gt;
This command simply converts a folder full of FLAC files into MP3s:&lt;br /&gt;
&lt;br /&gt;
    Get-AudioFile *.flac  | Export-AudioFile &amp;quot;Lame MP3&amp;quot; C:\Output&lt;br /&gt;
&lt;br /&gt;
To get a list of available encoders:&lt;br /&gt;
&lt;br /&gt;
    Get-AudioEncoderInfo&lt;br /&gt;
&lt;br /&gt;
To get information about the Lame encoder, including the default and available settings:&lt;br /&gt;
&lt;br /&gt;
    Get-AudioEncoderInfo &amp;quot;Lame MP3&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Add ReplayGain 2.0 to your entire FLAC library, treating each directory as a separate album:&lt;br /&gt;
&lt;br /&gt;
    Get-ChildItem C:\Users\Myself\Music -Directory -Recurse | % { $_ | Get-ChildItem -File -Filter *.flac | Measure-AudioFile &amp;quot;ReplayGain 2.0&amp;quot; -PassThru | Save-AudioFileMetadata }&lt;br /&gt;
&lt;br /&gt;
Convert your whole FLAC library to VBR AAC, with SoundCheck tags calculated from album ReplayGain information:&lt;br /&gt;
&lt;br /&gt;
    Get-ChildItem C:\Users\Myself\Music -Filter *.flac -Recurse | Get-AudioFile | Export-AudioFile &amp;quot;Apple AAC&amp;quot; &amp;quot;C:\Output\{Artist}\{Album}&amp;quot; -Name &amp;quot;{TrackNumber} - {Title}&amp;quot; -Setting @{AddSoundCheck = &amp;quot;Album&amp;quot;}&lt;br /&gt;
&lt;br /&gt;
Convert your whole FLAC library to VBR MP3, with ReplayGain directly applied to the resulting volume levels:&lt;br /&gt;
&lt;br /&gt;
    Get-ChildItem C:\Users\Myself\Music -Filter *.flac -Recurse | Get-AudioFile | Export-AudioFile &amp;quot;Lame MP3&amp;quot; &amp;quot;C:\Output\{Artist}\{Album}&amp;quot; -Name &amp;quot;{TrackNumber} - {Title}&amp;quot; -Setting @{ApplyGain = &amp;quot;Album&amp;quot;}&lt;br /&gt;
&lt;br /&gt;
Convert your whole FLAC library to VBR AAC, with embedded cover art retrieved from images located in each subdirectory. Embedded images are scaled and/or converted to JPEG for efficiency, where necessary:&lt;br /&gt;
&lt;br /&gt;
    foreach ($directory in Get-ChildItem C:\Users\Myself\Music -Directory -Recurse)&lt;br /&gt;
    {&lt;br /&gt;
        $cover = $directory | Get-ChildItem -File -Include *.png,*.jpg | Get-AudioCoverArt | Convert-AudioCoverArt -MaxWidth 500 -ConvertToLossy&lt;br /&gt;
        $files = $directory | Get-ChildItem -File -Filter *.flac | Get-AudioFile&lt;br /&gt;
        if ($files -and $cover)&lt;br /&gt;
        {&lt;br /&gt;
            $files | Set-AudioFileCoverArt $cover&lt;br /&gt;
        }&lt;br /&gt;
        $files | Export-AudioFile &amp;quot;Apple AAC&amp;quot; &amp;quot;C:\Output\{Artist}\{Album}&amp;quot; -Name &amp;quot;{TrackNumber} - {Title}&amp;quot;&lt;br /&gt;
    }&lt;br /&gt;
&lt;br /&gt;
== Externals links ==&lt;br /&gt;
* [https://github.com/jherby2k/PowerShellAudio/wiki GitHub Wiki]&lt;br /&gt;
* [https://wikipedia.org/wiki/Windows_PowerShell PowerShell Overview]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Software]]&lt;/div&gt;</summary>
		<author><name>199.246.152.2</name></author>
	</entry>
	<entry>
		<id>https://wiki.hydrogenaudio.org/index.php?title=PowerShell_Audio&amp;diff=26281</id>
		<title>PowerShell Audio</title>
		<link rel="alternate" type="text/html" href="https://wiki.hydrogenaudio.org/index.php?title=PowerShell_Audio&amp;diff=26281"/>
		<updated>2015-01-26T23:36:43Z</updated>

		<summary type="html">&lt;p&gt;199.246.152.2: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{title|PowerShell Audio}}&lt;br /&gt;
&lt;br /&gt;
{{Software Infobox&lt;br /&gt;
| name = PowerShell Audio&lt;br /&gt;
| logo =&lt;br /&gt;
| screenshot = [[Image:PowerShellAudio-logo.png|200px|PowerShellAudio Logo]]&lt;br /&gt;
| caption = audio conversion and tagging module for Windows PowerShell&lt;br /&gt;
| maintainer = [https://github.com/jherby2k/ Jebus]&lt;br /&gt;
| stable_release = [https://github.com/jherby2k/PowerShellAudio/releases/latest 1.1] (23 January 2014)&lt;br /&gt;
| operating_system = Windows&lt;br /&gt;
| use = Digital Audio conversion, tagging&lt;br /&gt;
| license = GNU LGPLv3&lt;br /&gt;
| website = [https://github.com/jherby2k/PowerShellAudio GitHub project]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=Introduction=     &lt;br /&gt;
PowerShell Audio is a PowerShell-driven interface for converting and tagging audio / music files. It is available under the Lesser GPL (v3) license, and is for Windows use only.&lt;br /&gt;
&lt;br /&gt;
== Features ==&lt;br /&gt;
* A unified interface to popular codecs (see Supported Formats).&lt;br /&gt;
* Fast and highly concurrent (&amp;quot;multi-threaded&amp;quot;) for modern, multi-core systems.&lt;br /&gt;
* ReplayGain integration:&lt;br /&gt;
** Batch-analyze thousands of files quickly,&lt;br /&gt;
** save the results to disk,&lt;br /&gt;
** convert to Apple SoundCheck format,&lt;br /&gt;
** or apply the changes directly during encoding.&lt;br /&gt;
* Metadata preservation between formats, including cover art.&lt;br /&gt;
* PowerShell interface brings powerful integration and scripting capabilities.&lt;br /&gt;
* API is open-source and extensible.&lt;br /&gt;
&lt;br /&gt;
== Supported Formats ==&lt;br /&gt;
* [[FLAC]]&lt;br /&gt;
* [[Ogg_Vorbis|Ogg Vorbis]]&lt;br /&gt;
* [[MP3]] ([[LAME]])&lt;br /&gt;
* [[Apple AAC]]&lt;br /&gt;
* [[WAV]]&lt;br /&gt;
&lt;br /&gt;
== Supported languages ==&lt;br /&gt;
* English&lt;br /&gt;
&lt;br /&gt;
== Example Usage ==&lt;br /&gt;
This command simply converts a folder full of FLAC files into MP3s:&lt;br /&gt;
&lt;br /&gt;
    Get-AudioFile *.flac  | Export-AudioFile &amp;quot;Lame MP3&amp;quot; C:\Output&lt;br /&gt;
&lt;br /&gt;
To get a list of available encoders:&lt;br /&gt;
&lt;br /&gt;
    Get-AudioEncoderInfo&lt;br /&gt;
&lt;br /&gt;
To get information about the Lame encoder, including the default and available settings:&lt;br /&gt;
&lt;br /&gt;
    Get-AudioEncoderInfo &amp;quot;Lame MP3&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Add ReplayGain 2.0 to your entire FLAC library, treating each directory as a separate album:&lt;br /&gt;
&lt;br /&gt;
    Get-ChildItem C:\Users\Myself\Music -Directory -Recurse | % { $_ | Get-ChildItem -File -Filter *.flac | Measure-AudioFile &amp;quot;ReplayGain 2.0&amp;quot; -PassThru | Save-AudioFileMetadata }&lt;br /&gt;
&lt;br /&gt;
Convert your whole FLAC library to VBR AAC, with SoundCheck tags calculated from album ReplayGain information:&lt;br /&gt;
&lt;br /&gt;
    Get-ChildItem C:\Users\Myself\Music -Filter *.flac -Recurse | Get-AudioFile | Export-AudioFile &amp;quot;Apple AAC&amp;quot; &amp;quot;C:\Output\{Artist}\{Album}&amp;quot; -Name &amp;quot;{TrackNumber} - {Title}&amp;quot; -Setting @{AddSoundCheck = &amp;quot;Album&amp;quot;}&lt;br /&gt;
&lt;br /&gt;
Convert your whole FLAC library to VBR MP3, with ReplayGain directly applied to the resulting volume levels:&lt;br /&gt;
&lt;br /&gt;
    Get-ChildItem C:\Users\Myself\Music -Filter *.flac -Recurse | Get-AudioFile | Export-AudioFile &amp;quot;Lame MP3&amp;quot; &amp;quot;C:\Output\{Artist}\{Album}&amp;quot; -Name &amp;quot;{TrackNumber} - {Title}&amp;quot; -Setting @{ApplyGain = &amp;quot;Album&amp;quot;}&lt;br /&gt;
&lt;br /&gt;
Convert your whole FLAC library to VBR AAC, with embedded cover art retrieved from images located in each subdirectory. Embedded images are scaled and/or converted to JPEG for efficiency, where necessary:&lt;br /&gt;
&lt;br /&gt;
    foreach ($directory in Get-ChildItem C:\Users\Myself\Music -Directory -Recurse)&lt;br /&gt;
    {&lt;br /&gt;
        $cover = $directory | Get-ChildItem -File -Include *.png,*.jpg | Get-AudioCoverArt | Convert-AudioCoverArt -MaxWidth 500 -ConvertToLossy&lt;br /&gt;
        $files = $directory | Get-ChildItem -File -Filter *.flac | Get-AudioFile&lt;br /&gt;
        if ($files -and $cover)&lt;br /&gt;
        {&lt;br /&gt;
            $files | Set-AudioFileCoverArt $cover&lt;br /&gt;
        }&lt;br /&gt;
        $files | Export-AudioFile &amp;quot;Apple AAC&amp;quot; &amp;quot;C:\Output\{Artist}\{Album}&amp;quot; -Name &amp;quot;{TrackNumber} - {Title}&amp;quot;&lt;br /&gt;
    }&lt;br /&gt;
&lt;br /&gt;
== Externals links ==&lt;br /&gt;
* [https://github.com/jherby2k/PowerShellAudio/wiki GitHub Wiki]&lt;br /&gt;
* [https://wikipedia.org/wiki/Windows_PowerShell PowerShell Overview]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Software]]&lt;/div&gt;</summary>
		<author><name>199.246.152.2</name></author>
	</entry>
	<entry>
		<id>https://wiki.hydrogenaudio.org/index.php?title=PowerShell_Audio&amp;diff=26280</id>
		<title>PowerShell Audio</title>
		<link rel="alternate" type="text/html" href="https://wiki.hydrogenaudio.org/index.php?title=PowerShell_Audio&amp;diff=26280"/>
		<updated>2015-01-26T23:34:49Z</updated>

		<summary type="html">&lt;p&gt;199.246.152.2: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{title|PowerShell Audio}}&lt;br /&gt;
&lt;br /&gt;
{{Software Infobox&lt;br /&gt;
| name = PowerShell Audio&lt;br /&gt;
| logo =&lt;br /&gt;
| screenshot = [[Image:PowerShellAudio-logo.png|200px|PowerShellAudio Logo]]&lt;br /&gt;
| caption = audio conversion and tagging module for Windows PowerShell&lt;br /&gt;
| maintainer = [https://github.com/jherby2k/ Jebus]&lt;br /&gt;
| stable_release = [https://github.com/jherby2k/PowerShellAudio/releases/latest 1.0.0] (12 Dezember 2014)&lt;br /&gt;
| operating_system = Windows&lt;br /&gt;
| use = Digital Audio conversion, tagging&lt;br /&gt;
| license = GNU GPLv3&lt;br /&gt;
| website = [https://github.com/jherby2k/PowerShellAudio GitHub project]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
=Introduction=     &lt;br /&gt;
PowerShell Audio is a PowerShell-driven interface for converting and tagging audio / music files. It is available under the Lesser GPL (v3) license, and is for Windows use only.&lt;br /&gt;
&lt;br /&gt;
== Features ==&lt;br /&gt;
* A unified interface to popular codecs (see Supported Formats).&lt;br /&gt;
* Fast and highly concurrent (&amp;quot;multi-threaded&amp;quot;) for modern, multi-core systems.&lt;br /&gt;
* ReplayGain integration:&lt;br /&gt;
** Batch-analyze thousands of files quickly,&lt;br /&gt;
** save the results to disk,&lt;br /&gt;
** convert to Apple SoundCheck format,&lt;br /&gt;
** or apply the changes directly during encoding.&lt;br /&gt;
* Metadata preservation between formats, including cover art.&lt;br /&gt;
* PowerShell interface brings powerful integration and scripting capabilities.&lt;br /&gt;
* API is open-source and extensible.&lt;br /&gt;
&lt;br /&gt;
== Supported Formats ==&lt;br /&gt;
* [[FLAC]]&lt;br /&gt;
* [[Ogg_Vorbis|Ogg Vorbis]]&lt;br /&gt;
* [[MP3]] ([[LAME]])&lt;br /&gt;
* [[Apple AAC]]&lt;br /&gt;
* [[WAV]]&lt;br /&gt;
&lt;br /&gt;
== Supported languages ==&lt;br /&gt;
* English&lt;br /&gt;
&lt;br /&gt;
== Example Usage ==&lt;br /&gt;
This command simply converts a folder full of FLAC files into MP3s:&lt;br /&gt;
&lt;br /&gt;
    Get-AudioFile *.flac  | Export-AudioFile &amp;quot;Lame MP3&amp;quot; C:\Output&lt;br /&gt;
&lt;br /&gt;
To get a list of available encoders:&lt;br /&gt;
&lt;br /&gt;
    Get-AudioEncoderInfo&lt;br /&gt;
&lt;br /&gt;
To get information about the Lame encoder, including the default and available settings:&lt;br /&gt;
&lt;br /&gt;
    Get-AudioEncoderInfo &amp;quot;Lame MP3&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Add ReplayGain 2.0 to your entire FLAC library, treating each directory as a separate album:&lt;br /&gt;
&lt;br /&gt;
    Get-ChildItem C:\Users\Myself\Music -Directory -Recurse | % { $_ | Get-ChildItem -File -Filter *.flac | Measure-AudioFile &amp;quot;ReplayGain 2.0&amp;quot; -PassThru | Save-AudioFileMetadata }&lt;br /&gt;
&lt;br /&gt;
Convert your whole FLAC library to VBR AAC, with SoundCheck tags calculated from album ReplayGain information:&lt;br /&gt;
&lt;br /&gt;
    Get-ChildItem C:\Users\Myself\Music -Filter *.flac -Recurse | Get-AudioFile | Export-AudioFile &amp;quot;Apple AAC&amp;quot; &amp;quot;C:\Output\{Artist}\{Album}&amp;quot; -Name &amp;quot;{TrackNumber} - {Title}&amp;quot; -Setting @{AddSoundCheck = &amp;quot;Album&amp;quot;}&lt;br /&gt;
&lt;br /&gt;
Convert your whole FLAC library to VBR MP3, with ReplayGain directly applied to the resulting volume levels:&lt;br /&gt;
&lt;br /&gt;
    Get-ChildItem C:\Users\Myself\Music -Filter *.flac -Recurse | Get-AudioFile | Export-AudioFile &amp;quot;Lame MP3&amp;quot; &amp;quot;C:\Output\{Artist}\{Album}&amp;quot; -Name &amp;quot;{TrackNumber} - {Title}&amp;quot; -Setting @{ApplyGain = &amp;quot;Album&amp;quot;}&lt;br /&gt;
&lt;br /&gt;
Convert your whole FLAC library to VBR AAC, with embedded cover art retrieved from images located in each subdirectory. Embedded images are scaled and/or converted to JPEG for efficiency, where necessary:&lt;br /&gt;
&lt;br /&gt;
    foreach ($directory in Get-ChildItem C:\Users\Myself\Music -Directory -Recurse)&lt;br /&gt;
    {&lt;br /&gt;
        $cover = $directory | Get-ChildItem -File -Include *.png,*.jpg | Get-AudioCoverArt | Convert-AudioCoverArt -MaxWidth 500 -ConvertToLossy&lt;br /&gt;
        $files = $directory | Get-ChildItem -File -Filter *.flac | Get-AudioFile&lt;br /&gt;
        if ($files -and $cover)&lt;br /&gt;
        {&lt;br /&gt;
            $files | Set-AudioFileCoverArt $cover&lt;br /&gt;
        }&lt;br /&gt;
        $files | Export-AudioFile &amp;quot;Apple AAC&amp;quot; &amp;quot;C:\Output\{Artist}\{Album}&amp;quot; -Name &amp;quot;{TrackNumber} - {Title}&amp;quot;&lt;br /&gt;
    }&lt;br /&gt;
&lt;br /&gt;
== Externals links ==&lt;br /&gt;
* [https://github.com/jherby2k/PowerShellAudio/wiki GitHub Wiki]&lt;br /&gt;
* [https://wikipedia.org/wiki/Windows_PowerShell PowerShell Overview]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Software]]&lt;/div&gt;</summary>
		<author><name>199.246.152.2</name></author>
	</entry>
</feed>