dotemacs

My Emacs configuration
git clone git://git.entf.net/dotemacs
Log | Files | Refs | LICENSE

mpv-autoloads.el (3066B)


      1 ;;; mpv-autoloads.el --- automatically extracted autoloads (do not edit)   -*- lexical-binding: t -*-
      2 ;; Generated by the `loaddefs-generate' function.
      3 
      4 ;; This file is part of GNU Emacs.
      5 
      6 ;;; Code:
      7 
      8 (add-to-list 'load-path (directory-file-name
      9                          (or (file-name-directory #$) (car load-path))))
     10 
     11 
     12 
     13 ;;; Generated autoloads from mpv.el
     14 
     15 (autoload 'mpv-play "mpv" "\
     16 Start an mpv process playing the file at PATH.
     17 
     18 You can use this with `org-add-link-type' or `org-file-apps'.
     19 See `mpv-start' if you need to pass further arguments and
     20 `mpv-default-options' for default options.
     21 
     22 (fn PATH)" t nil)
     23 (autoload 'mpv-kill "mpv" "\
     24 Kill the mpv process." t nil)
     25 (autoload 'mpv-pause "mpv" "\
     26 Pause or unpause playback." t nil)
     27 (autoload 'mpv-insert-playback-position "mpv" "\
     28 Insert the current playback position at point.
     29 
     30 When called with a non-nil ARG, insert a timer list item like `org-timer-item'.
     31 
     32 (fn &optional ARG)" t nil)
     33 (autoload 'mpv-seek-to-position-at-point "mpv" "\
     34 Jump to playback position as inserted by `mpv-insert-playback-position'.
     35 
     36 This can be used with the `org-open-at-point-functions' hook." t nil)
     37 (autoload 'mpv-speed-set "mpv" "\
     38 Set playback speed to FACTOR.
     39 
     40 (fn FACTOR)" t nil)
     41 (autoload 'mpv-speed-increase "mpv" "\
     42 Increase playback speed by STEPS factors of `mpv-speed-step'.
     43 
     44 (fn STEPS)" t nil)
     45 (autoload 'mpv-speed-decrease "mpv" "\
     46 Decrease playback speed by STEPS factors of `mpv-speed-step'.
     47 
     48 (fn STEPS)" t nil)
     49 (autoload 'mpv-volume-set "mpv" "\
     50 Set playback volume to FACTOR.
     51 
     52 (fn FACTOR)" t nil)
     53 (autoload 'mpv-volume-increase "mpv" "\
     54 Increase playback volume by STEPS factors of `mpv-volume-step'.
     55 
     56 (fn STEPS)" t nil)
     57 (autoload 'mpv-volume-decrease "mpv" "\
     58 Decrease playback volume by STEPS factors of `mpv-volume-step'.
     59 
     60 (fn STEPS)" t nil)
     61 (autoload 'mpv-seek "mpv" "\
     62 Seek to the given (absolute) time in SECONDS.
     63 A negative value is interpreted relative to the end of the file.
     64 
     65 (fn SECONDS)" t nil)
     66 (autoload 'mpv-seek-forward "mpv" "\
     67 Seek forward ARG seconds.
     68 If ARG is numeric, it is used as the number of seconds.  Else each use
     69 of \\[universal-argument] will add another `mpv-seek-step' seconds.
     70 
     71 (fn ARG)" t nil)
     72 (autoload 'mpv-seek-backward "mpv" "\
     73 Seek backward ARG seconds.
     74 If ARG is numeric, it is used as the number of seconds.  Else each use
     75 of \\[universal-argument] will add another `mpv-seek-step' seconds.
     76 
     77 (fn ARG)" t nil)
     78 (autoload 'mpv-revert-seek "mpv" "\
     79 Undo the previous seek command." t nil)
     80 (autoload 'mpv-playlist-next "mpv" "\
     81 Go to the next entry on the playlist." t nil)
     82 (autoload 'mpv-playlist-prev "mpv" "\
     83 Go to the previous entry on the playlist." t nil)
     84 (autoload 'mpv-version "mpv" "\
     85 Return the mpv version string.
     86 When called interactively, also show a more verbose version in
     87 the echo area." t nil)
     88 (register-definition-prefixes "mpv" '("mpv-"))
     89 
     90 ;;; End of scraped data
     91 
     92 (provide 'mpv-autoloads)
     93 
     94 ;; Local Variables:
     95 ;; version-control: never
     96 ;; no-byte-compile: t
     97 ;; no-update-autoloads: t
     98 ;; coding: utf-8-emacs-unix
     99 ;; End:
    100 
    101 ;;; mpv-autoloads.el ends here