Functions/GenXdev.Media/Start-VlcMediaPlayerPreviousInPlaylist.ps1
|
################################################################################ <# .SYNOPSIS Moves to the previous item in the VLC Media Player playlist. .DESCRIPTION This function sends the 'p' key command to VLC Media Player to navigate to the previous item in the current playlist. The function supports WhatIf operations and will restore focus after sending the command. .LICENSE Copyright (C) 2026 René Vaessen / GenXdev This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see <https://www.gnu.org/licenses/>. .EXAMPLE Start-VlcMediaPlayerPreviousInPlaylist .EXAMPLE vlcprev .EXAMPLE vlcback #> function Start-VlcMediaPlayerPreviousInPlaylist { [CmdletBinding(SupportsShouldProcess)] [Alias('vlcprev', 'vlcback')] param ( ) begin { } process { # check if the user wants to proceed with the operation if ($PSCmdlet.ShouldProcess('VLC Media Player', 'Go to previous item in playlist')) { # send the 'p' key to vlc media player to go to previous playlist item GenXdev\Open-VlcMediaPlayer -KeysToSend 'p' -RestoreFocus } } end { } } ################################################################################ |