Skip to content
Snippets Groups Projects
Commit 66f2e535 authored by George Kiagiadakis's avatar George Kiagiadakis
Browse files

config: add .node config files to create audiotestsrc / videotestsrc

and add the non-disabled filenames in .gitignore so that I can maintain
symlinks to enable them without commiting them
parent cf799dba
No related branches found
No related tags found
No related merge requests found
build/
subprojects/cpptoml/
src/config/*testsrc.node
# Creates a static audio test source node & endpoint for testing
# Rename this file to remove the .disabled extension in order to enable it
# Note that you also need to add this line in pipewire.conf:
# add-spa-lib audiotestsrc audiotestsrc/libspa-audiotestsrc
[node]
factory = "adapter"
properties = [
{ name = "factory.name", value = "audiotestsrc" },
{ name = "node.name", value = "Audio Test Source" },
]
# Creates a static video test source node & endpoint for testing
# Rename this file to remove the .disabled extension in order to enable it
# Note that you also need to add this line in pipewire.conf:
# add-spa-lib videotestsrc videotestsrc/libspa-videotestsrc
[node]
factory = "spa-node-factory"
properties = [
{ name = "factory.name", value = "videotestsrc" },
{ name = "node.name", value = "Video Test Source" },
# pattern 0 -> SMPTE + snow
# pattern 1 -> snow
{ name = "Spa:Pod:Object:Param:Props:patternType", value = "1" },
]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment