Short key to stop VLC player












0















I have training curse video that runs on vlc player on second monitor. I do sample exercise in Visual Studio on main monitor while watching video. Sometimes I need to stop video in fast way and for this reason I don't want use mouse. I need to stop video with help of short key combination. How to achieve that?



UPD:
I have installed AutoHotKey, but keys are working only when vlc window is active










share|improve this question

























  • Have you got multimedia keys on your keyboard? if yes, the pause button should do

    – pim
    Sep 21 '17 at 13:54











  • I have som e keys for internet exploring, but no multimedia. Can I somehow redefine them?

    – vico
    Sep 21 '17 at 14:34











  • "I have installed AutoHotKey, but keys are working only when VLC window is active." Unfortunately, you will find that is typically the way that it will work. For better or worse, the fastest way to pause that video is probably going to involve utilizing the mouse.

    – Run5k
    Sep 21 '17 at 15:02











  • Try the following. This may also work with non-media keys. Note that you must utilize the "Global" setting and will need to restart VLC for the changes to take effect: superuser.com/a/750103/122089

    – Beems
    Sep 21 '17 at 19:46
















0















I have training curse video that runs on vlc player on second monitor. I do sample exercise in Visual Studio on main monitor while watching video. Sometimes I need to stop video in fast way and for this reason I don't want use mouse. I need to stop video with help of short key combination. How to achieve that?



UPD:
I have installed AutoHotKey, but keys are working only when vlc window is active










share|improve this question

























  • Have you got multimedia keys on your keyboard? if yes, the pause button should do

    – pim
    Sep 21 '17 at 13:54











  • I have som e keys for internet exploring, but no multimedia. Can I somehow redefine them?

    – vico
    Sep 21 '17 at 14:34











  • "I have installed AutoHotKey, but keys are working only when VLC window is active." Unfortunately, you will find that is typically the way that it will work. For better or worse, the fastest way to pause that video is probably going to involve utilizing the mouse.

    – Run5k
    Sep 21 '17 at 15:02











  • Try the following. This may also work with non-media keys. Note that you must utilize the "Global" setting and will need to restart VLC for the changes to take effect: superuser.com/a/750103/122089

    – Beems
    Sep 21 '17 at 19:46














0












0








0


1






I have training curse video that runs on vlc player on second monitor. I do sample exercise in Visual Studio on main monitor while watching video. Sometimes I need to stop video in fast way and for this reason I don't want use mouse. I need to stop video with help of short key combination. How to achieve that?



UPD:
I have installed AutoHotKey, but keys are working only when vlc window is active










share|improve this question
















I have training curse video that runs on vlc player on second monitor. I do sample exercise in Visual Studio on main monitor while watching video. Sometimes I need to stop video in fast way and for this reason I don't want use mouse. I need to stop video with help of short key combination. How to achieve that?



UPD:
I have installed AutoHotKey, but keys are working only when vlc window is active







windows-10 keyboard-shortcuts vlc-media-player






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Sep 21 '17 at 14:36







vico

















asked Sep 21 '17 at 13:03









vicovico

52051527




52051527













  • Have you got multimedia keys on your keyboard? if yes, the pause button should do

    – pim
    Sep 21 '17 at 13:54











  • I have som e keys for internet exploring, but no multimedia. Can I somehow redefine them?

    – vico
    Sep 21 '17 at 14:34











  • "I have installed AutoHotKey, but keys are working only when VLC window is active." Unfortunately, you will find that is typically the way that it will work. For better or worse, the fastest way to pause that video is probably going to involve utilizing the mouse.

    – Run5k
    Sep 21 '17 at 15:02











  • Try the following. This may also work with non-media keys. Note that you must utilize the "Global" setting and will need to restart VLC for the changes to take effect: superuser.com/a/750103/122089

    – Beems
    Sep 21 '17 at 19:46



















  • Have you got multimedia keys on your keyboard? if yes, the pause button should do

    – pim
    Sep 21 '17 at 13:54











  • I have som e keys for internet exploring, but no multimedia. Can I somehow redefine them?

    – vico
    Sep 21 '17 at 14:34











  • "I have installed AutoHotKey, but keys are working only when VLC window is active." Unfortunately, you will find that is typically the way that it will work. For better or worse, the fastest way to pause that video is probably going to involve utilizing the mouse.

    – Run5k
    Sep 21 '17 at 15:02











  • Try the following. This may also work with non-media keys. Note that you must utilize the "Global" setting and will need to restart VLC for the changes to take effect: superuser.com/a/750103/122089

    – Beems
    Sep 21 '17 at 19:46

















Have you got multimedia keys on your keyboard? if yes, the pause button should do

– pim
Sep 21 '17 at 13:54





Have you got multimedia keys on your keyboard? if yes, the pause button should do

– pim
Sep 21 '17 at 13:54













I have som e keys for internet exploring, but no multimedia. Can I somehow redefine them?

– vico
Sep 21 '17 at 14:34





I have som e keys for internet exploring, but no multimedia. Can I somehow redefine them?

– vico
Sep 21 '17 at 14:34













"I have installed AutoHotKey, but keys are working only when VLC window is active." Unfortunately, you will find that is typically the way that it will work. For better or worse, the fastest way to pause that video is probably going to involve utilizing the mouse.

– Run5k
Sep 21 '17 at 15:02





"I have installed AutoHotKey, but keys are working only when VLC window is active." Unfortunately, you will find that is typically the way that it will work. For better or worse, the fastest way to pause that video is probably going to involve utilizing the mouse.

– Run5k
Sep 21 '17 at 15:02













Try the following. This may also work with non-media keys. Note that you must utilize the "Global" setting and will need to restart VLC for the changes to take effect: superuser.com/a/750103/122089

– Beems
Sep 21 '17 at 19:46





Try the following. This may also work with non-media keys. Note that you must utilize the "Global" setting and will need to restart VLC for the changes to take effect: superuser.com/a/750103/122089

– Beems
Sep 21 '17 at 19:46










2 Answers
2






active

oldest

votes


















0














global shortcut keys work as Beems pointed out, but I needed to do it from AHK because I needed to do other commands too
this ahk script works for me (win+numpad 5 to toggle playback)



#Numpad5::

ControlSend,, {Space}, ahk_class QWidget






share|improve this answer































    -1














    “Space bar” to pause playback “s” to stop
    Go to tools, preferences, hotkeys to change if required






    share|improve this answer



















    • 2





      This shortcut will only work when vlc is the active window

      – Dave M
      Sep 21 '17 at 17:28











    • Option tab will cycle through open applications (alt tab for pc) this is how I use it and it works fine as long as you have only gone into one application so it’s not several tabs away then can perform action of option tab, space fairly quickly.

      – kmb
      Sep 22 '17 at 20:04











    • We always appreciate contributions from our new community members, but I think that you might be missing the point that @DaveM is trying to make. The OP specifically said that "I have installed AutoHotKey, but keys are working only when vlc window is active." In other words, they already found a solution that will work if you toggle over to VLC as the active window. They are asking for one that will work when VLC isn't already the active window.

      – Run5k
      Sep 22 '17 at 21:15











    Your Answer








    StackExchange.ready(function() {
    var channelOptions = {
    tags: "".split(" "),
    id: "3"
    };
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function() {
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled) {
    StackExchange.using("snippets", function() {
    createEditor();
    });
    }
    else {
    createEditor();
    }
    });

    function createEditor() {
    StackExchange.prepareEditor({
    heartbeatType: 'answer',
    autoActivateHeartbeat: false,
    convertImagesToLinks: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    imageUploader: {
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    },
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    });


    }
    });














    draft saved

    draft discarded


















    StackExchange.ready(
    function () {
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1252468%2fshort-key-to-stop-vlc-player%23new-answer', 'question_page');
    }
    );

    Post as a guest















    Required, but never shown

























    2 Answers
    2






    active

    oldest

    votes








    2 Answers
    2






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    0














    global shortcut keys work as Beems pointed out, but I needed to do it from AHK because I needed to do other commands too
    this ahk script works for me (win+numpad 5 to toggle playback)



    #Numpad5::

    ControlSend,, {Space}, ahk_class QWidget






    share|improve this answer




























      0














      global shortcut keys work as Beems pointed out, but I needed to do it from AHK because I needed to do other commands too
      this ahk script works for me (win+numpad 5 to toggle playback)



      #Numpad5::

      ControlSend,, {Space}, ahk_class QWidget






      share|improve this answer


























        0












        0








        0







        global shortcut keys work as Beems pointed out, but I needed to do it from AHK because I needed to do other commands too
        this ahk script works for me (win+numpad 5 to toggle playback)



        #Numpad5::

        ControlSend,, {Space}, ahk_class QWidget






        share|improve this answer













        global shortcut keys work as Beems pointed out, but I needed to do it from AHK because I needed to do other commands too
        this ahk script works for me (win+numpad 5 to toggle playback)



        #Numpad5::

        ControlSend,, {Space}, ahk_class QWidget







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Jan 14 at 7:31









        MatiaanMatiaan

        11




        11

























            -1














            “Space bar” to pause playback “s” to stop
            Go to tools, preferences, hotkeys to change if required






            share|improve this answer



















            • 2





              This shortcut will only work when vlc is the active window

              – Dave M
              Sep 21 '17 at 17:28











            • Option tab will cycle through open applications (alt tab for pc) this is how I use it and it works fine as long as you have only gone into one application so it’s not several tabs away then can perform action of option tab, space fairly quickly.

              – kmb
              Sep 22 '17 at 20:04











            • We always appreciate contributions from our new community members, but I think that you might be missing the point that @DaveM is trying to make. The OP specifically said that "I have installed AutoHotKey, but keys are working only when vlc window is active." In other words, they already found a solution that will work if you toggle over to VLC as the active window. They are asking for one that will work when VLC isn't already the active window.

              – Run5k
              Sep 22 '17 at 21:15
















            -1














            “Space bar” to pause playback “s” to stop
            Go to tools, preferences, hotkeys to change if required






            share|improve this answer



















            • 2





              This shortcut will only work when vlc is the active window

              – Dave M
              Sep 21 '17 at 17:28











            • Option tab will cycle through open applications (alt tab for pc) this is how I use it and it works fine as long as you have only gone into one application so it’s not several tabs away then can perform action of option tab, space fairly quickly.

              – kmb
              Sep 22 '17 at 20:04











            • We always appreciate contributions from our new community members, but I think that you might be missing the point that @DaveM is trying to make. The OP specifically said that "I have installed AutoHotKey, but keys are working only when vlc window is active." In other words, they already found a solution that will work if you toggle over to VLC as the active window. They are asking for one that will work when VLC isn't already the active window.

              – Run5k
              Sep 22 '17 at 21:15














            -1












            -1








            -1







            “Space bar” to pause playback “s” to stop
            Go to tools, preferences, hotkeys to change if required






            share|improve this answer













            “Space bar” to pause playback “s” to stop
            Go to tools, preferences, hotkeys to change if required







            share|improve this answer












            share|improve this answer



            share|improve this answer










            answered Sep 21 '17 at 14:35









            kmbkmb

            1




            1








            • 2





              This shortcut will only work when vlc is the active window

              – Dave M
              Sep 21 '17 at 17:28











            • Option tab will cycle through open applications (alt tab for pc) this is how I use it and it works fine as long as you have only gone into one application so it’s not several tabs away then can perform action of option tab, space fairly quickly.

              – kmb
              Sep 22 '17 at 20:04











            • We always appreciate contributions from our new community members, but I think that you might be missing the point that @DaveM is trying to make. The OP specifically said that "I have installed AutoHotKey, but keys are working only when vlc window is active." In other words, they already found a solution that will work if you toggle over to VLC as the active window. They are asking for one that will work when VLC isn't already the active window.

              – Run5k
              Sep 22 '17 at 21:15














            • 2





              This shortcut will only work when vlc is the active window

              – Dave M
              Sep 21 '17 at 17:28











            • Option tab will cycle through open applications (alt tab for pc) this is how I use it and it works fine as long as you have only gone into one application so it’s not several tabs away then can perform action of option tab, space fairly quickly.

              – kmb
              Sep 22 '17 at 20:04











            • We always appreciate contributions from our new community members, but I think that you might be missing the point that @DaveM is trying to make. The OP specifically said that "I have installed AutoHotKey, but keys are working only when vlc window is active." In other words, they already found a solution that will work if you toggle over to VLC as the active window. They are asking for one that will work when VLC isn't already the active window.

              – Run5k
              Sep 22 '17 at 21:15








            2




            2





            This shortcut will only work when vlc is the active window

            – Dave M
            Sep 21 '17 at 17:28





            This shortcut will only work when vlc is the active window

            – Dave M
            Sep 21 '17 at 17:28













            Option tab will cycle through open applications (alt tab for pc) this is how I use it and it works fine as long as you have only gone into one application so it’s not several tabs away then can perform action of option tab, space fairly quickly.

            – kmb
            Sep 22 '17 at 20:04





            Option tab will cycle through open applications (alt tab for pc) this is how I use it and it works fine as long as you have only gone into one application so it’s not several tabs away then can perform action of option tab, space fairly quickly.

            – kmb
            Sep 22 '17 at 20:04













            We always appreciate contributions from our new community members, but I think that you might be missing the point that @DaveM is trying to make. The OP specifically said that "I have installed AutoHotKey, but keys are working only when vlc window is active." In other words, they already found a solution that will work if you toggle over to VLC as the active window. They are asking for one that will work when VLC isn't already the active window.

            – Run5k
            Sep 22 '17 at 21:15





            We always appreciate contributions from our new community members, but I think that you might be missing the point that @DaveM is trying to make. The OP specifically said that "I have installed AutoHotKey, but keys are working only when vlc window is active." In other words, they already found a solution that will work if you toggle over to VLC as the active window. They are asking for one that will work when VLC isn't already the active window.

            – Run5k
            Sep 22 '17 at 21:15


















            draft saved

            draft discarded




















































            Thanks for contributing an answer to Super User!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid



            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.


            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1252468%2fshort-key-to-stop-vlc-player%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            flock() on closed filehandle LOCK_FILE at /usr/bin/apt-mirror

            Mangá

             ⁒  ․,‪⁊‑⁙ ⁖, ⁇‒※‌, †,⁖‗‌⁝    ‾‸⁘,‖⁔⁣,⁂‾
”‑,‥–,‬ ,⁀‹⁋‴⁑ ‒ ,‴⁋”‼ ⁨,‷⁔„ ‰′,‐‚ ‥‡‎“‷⁃⁨⁅⁣,⁔
⁇‘⁔⁡⁏⁌⁡‿‶‏⁨ ⁣⁕⁖⁨⁩⁥‽⁀  ‴‬⁜‟ ⁃‣‧⁕‮ …‍⁨‴ ⁩,⁚⁖‫ ,‵ ⁀,‮⁝‣‣ ⁑  ⁂– ․, ‾‽ ‏⁁“⁗‸ ‾… ‹‡⁌⁎‸‘ ‡⁏⁌‪ ‵⁛ ‎⁨ ―⁦⁤⁄⁕