Skip to content

CSCore bindings optimized for PowerShell use.

Notifications You must be signed in to change notification settings

bmsimons/PSCore

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 

Repository files navigation

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

About

CSCore bindings optimized for PowerShell use.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages