Finish VLC v2 loading

This commit is contained in:
Timothyxxx
2024-01-25 12:40:00 +08:00
parent 8a9f8e116b
commit 37ec196b18
10 changed files with 464 additions and 36 deletions

View File

@@ -3,16 +3,46 @@
"snapshot": "chrome",
"instruction": "I like watching movies (using VLC) on my laptop and sometimes the volume is too low for my taste even when the volume in VLC is set to the maximum of 125% on the volume control. Can you increase the max volume of the video to the 200% of the original volume?",
"source": "https://superuser.com/questions/1513285/how-can-i-increase-the-maximum-volume-output-by-vlc?rq=1",
"config": [],
"config": [
{
"type": "launch",
"parameters": {
"command": "vlc"
}
}
],
"trajectory": "trajectories/",
"related_apps": [
"chrome"
"vlc"
],
"evaluator": {
"func": "",
"result": {
},
"postconfig": [
{
"type": "launch",
"parameters": {
"command": [
"pkill",
"vlc"
]
}
},
{
"type": "launch",
"parameters": {
"command": "vlc"
}
}
],
"func": "check_qt_max_volume",
"expected": {
"type": "rule",
"rules": {
"expected_qt_max_volume": 200
}
},
"result": {
"type": "vlc_config",
"dest": "vlcrc"
}
}
}