This is my current complex modification { "description": "Double Tab to accept zsh-autosuggestions", "manipulators": [ { "conditions": [ { "name": "double_tab", "type": "variable_if", "value": 1 } ], "from": { "key_code": "tab" }, "to": [{ "key_code": "right_arrow" }], "type": "basic" }, { "from": { "key_code": "tab" }, "to": [ { "set_variable": […]
Daily Archives: March 31, 2025
There is another question about this, but the answers are either old or unclear. I am trying to use ASIO4ALL with Reason 10 to make music. Reason wants the Realtek Audio output, but MS GS Wavetable Synth has it tied up. I can uninstall the device, but Windows just brings […]
I’ve noticed that some ffmpeg filters omit the name of parameters for certain parameters. For example, you can write: ffplay -f lavfi -i 'color=red' rather than using color=color=red; or ffplay -f lavfi -i 'color=white:size=1024x512, drawtext=hello, scale=500x300' How do I tell which parameter is the “default parameter”?
I have the latest version of Virtual Box installed on windows 10 host. The installer for guest additions fails to complete because of the error shown in the image
When I wanted to redirect the stdout of the ffprobe command, I got a surprise: the usual stdout > (file) didn’t work. After a few web searches, I found the answer: I had to use stdout > (file) 2>&1, and it was OK: https://stackoverflow.com/questions/29680391/ffmpeg-command-line-write-output-to-a-text-file. What could explain why the usual […]