diff options
author | Sacha Chua <sacha@sachachua.com> | 2023-12-09 10:47:27 -0500 |
---|---|---|
committer | Sacha Chua <sacha@sachachua.com> | 2023-12-09 10:47:27 -0500 |
commit | a10ed5ae35453fd59890eec227d658aac6f7b1c4 (patch) | |
tree | 95e8e3d6af6116d337253f015b7c556c87ebdd66 | |
parent | 9968f7cef9914709ae83fbad1a9b9ce2e7e98e96 (diff) | |
download | emacsconf-el-a10ed5ae35453fd59890eec227d658aac6f7b1c4.tar.xz emacsconf-el-a10ed5ae35453fd59890eec227d658aac6f7b1c4.zip |
add code for renaming videos on YouTube
-rw-r--r-- | emacsconf-extract.el | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/emacsconf-extract.el b/emacsconf-extract.el index 7a1b3a9..7fb3e12 100644 --- a/emacsconf-extract.el +++ b/emacsconf-extract.el @@ -1031,7 +1031,13 @@ Strategies: ;;; YouTube -;; When the token needs refreshing, delete the associated lines from ~/.authinfo +;; When the token needs refreshing, delete the associated lines from +;; ~/.authinfo This code just sets the title and description. Still +;; need to figure out how to properly set the license, visibility, +;; recording date, and captions. +;; +;; To avoid being prompted for the client secret, it's helpful to have a line in ~/.authinfo or ~/.authinfo.gpg with +;; machine https://oauth2.googleapis.com/token username CLIENT_ID password CLIENT_SECRET (defvar emacsconf-extract-google-client-identifier nil) (defvar emacsconf-extract-youtube-api-channels nil) |