답변:
비디오를 마우스 오른쪽 단추로 클릭하고 정보를 선택한 다음 파일 경로를 복사 한 다음을 누르고 win+r
입력하십시오.explorer.exe /select,c:\path\to\file.wmv
이 명령을 사용하는 기본 루아 확장을 만들었습니다. Windows 10 x64에서 vlc 3.0.4로 테스트되었습니다.
view->select_in_explorer
-- "select_in_explorer.lua" -- VLC Extension
function descriptor()
return {
title = "Select in explorer",
version = "0.1",
author = "mb",
url = "",
shortdesc = "Select in explorer",
description = [[opens Windows explorer and select the currently played file]],
capabilities = {}
}
end
function activate()
dlg = vlc.dialog("Select in explorer")
update_dialog()
end
function deactivate()
end
function close()
vlc.deactivate()
end
function meta_changed()
return false
end
function update_dialog()
path = vlc.playlist.get(vlc.playlist.current()).path
dlg:add_button("select in explorer",select_in_explorer, 1, 1, 1, 1)
path_label = dlg:add_label(path, 2, 1, 1, 1)
dlg:show()
end
function select_in_explorer()
path = vlc.playlist.get(vlc.playlist.current()).path
cmd = "explorer.exe /select,"..path
io.popen(cmd)
end