mirror of
https://github.com/cookiengineer/audacity
synced 2025-05-02 00:29:41 +02:00
9 lines
115 B
Python
Executable File
9 lines
115 B
Python
Executable File
#!/usr/bin/env python
|
|
import slv2;
|
|
|
|
w = slv2.World()
|
|
w.load_all()
|
|
|
|
for p in w.get_all_plugins():
|
|
print p.uri()
|