We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I want to upload videos with multi-line descriptions.
Say, for example, I have the description saved in a text box.
Then I run a script that spits out a command in a batch file.
I want all the lines of the description to upload, not just the first line
Example: youtube-upload ^ --title="intro description test" ^ --description="multi line description" ^ --category="Music" ^ --tags="mutter, beethoven" ^ --default-language="en" ^ --default-audio-language="en" ^ --client-secrets="my_client_secrets.json" ^ --credentials-file="my_credentials.json" ^ --playlist="My favorite music" ^ "look of disapproval INTRO.mp4"
The text was updated successfully, but these errors were encountered:
Try this:
description=`cat <<_EOF_ line 1 line 2 line 3 _EOF_ ` ... youtube-upload \ --title="intro description test" \ --description="$description" \ ...
Sorry, something went wrong.
No branches or pull requests
I want to upload videos with multi-line descriptions.
Say, for example, I have the description saved in a text box.
Then I run a script that spits out a command in a batch file.
I want all the lines of the description to upload, not just the first line
Example:
youtube-upload ^
--title="intro description test" ^
--description="multi line description" ^
--category="Music" ^
--tags="mutter, beethoven" ^
--default-language="en" ^
--default-audio-language="en" ^
--client-secrets="my_client_secrets.json" ^
--credentials-file="my_credentials.json" ^
--playlist="My favorite music" ^
"look of disapproval INTRO.mp4"
The text was updated successfully, but these errors were encountered: