11 lines
400 B
Bash
11 lines
400 B
Bash
|
# ╭────────┬─────────┬───────╮
|
||
|
# │ ffmpeg │ devices │ reset │
|
||
|
# ╰────────┴─────────┴───────╯
|
||
|
|
||
|
_rwx_cmd_rwx_ffmpeg_devices_reset() { rwx_ffmpeg_devices_reset "${@}"; }
|
||
|
rwx_ffmpeg_devices_reset() {
|
||
|
local module="uvcvideo"
|
||
|
modprobe --remove "${module}" &&
|
||
|
modprobe "${module}"
|
||
|
}
|