Skip to content

Latest commit

 

History

History
68 lines (38 loc) · 1.16 KB

README.md

File metadata and controls

68 lines (38 loc) · 1.16 KB

PSCore

CSCore bindings optimized for PowerShell use.

Getting Started

[TBD]

Prerequisites

  1. PowerShell .NET 2 or greater.

Installing

[TBD]

Running the tests

[TBD]

Deployment

Copy the DLL to a local folder and call it from PowerShell using something like this:

Add-Type -Path PSCore.dll
$r = [PSCore.LoopbackRecorder]

$r::StartRecording("X:\test1.mp3")

(This will lock the DLL until the PowerShell IDE is closed.)

Or this:

[System.Reflection.Assembly]::Load( [System.IO.File]::ReadAllBytes("pscore.dll") )

$r = [PSCore.LoopbackRecorder]
$r::StartRecording("X:\test1.mp3")

(The above will not lock the DLL file. It works because we do not require explicit bindings when loading the DLL.)

Built With

Contributing

[TBD]

Versioning

[TBD]

Authors

See also the list of contributors who participated in this project.

License

[TBD]

Acknowledgments

  • My cat