Sponsored Content
Full Discussion: How to use YouTube tags
The Lounge What is on Your Mind? How to use YouTube tags Post 302157906 by Perderabo on Sunday 13th of January 2008 02:52:23 PM
Old 01-13-2008
How to use YouTube tags

We have tags to allow embedding a YouTube video in a thread. Here is how they work.... First I need to find the url of a YouTube video that I want to use. Here is one: http://www.youtube.com/watch?v=Do5vj3D-OD4

That "Do5vj3D-OD4" is the key. So I can do this:
[size=+1][b]Rakim by Dead Can Dance[/b][/size]
[youtube]Do5vj3D-OD4[/youtube]
to get this:

Rakim by Dead Can Dance


Sometimes I find a YouTube url that looks like this: http://uk.youtube.com/watch?v=QQ8Fzd3eH0c
I can always change the "uk" (or whatever) in the url to "www" and get the same video. So I can just use the "QQ8Fzd3eH0c" with the youtube tags and it should work. If this doesn't work at first, you might try waiting a little while if the video was recently uploaded. But just in case you really need to use an alternate youtube server, there is syntax for that too. To get this video from the uk server, I can use:
[size=+1][b]Ever Dream by Nightwish[/b][/size]
[youtube=uk]QQ8Fzd3eH0c[/youtube]
to get this:

Ever Dream by Nightwish
[youtube=uk]QQ8Fzd3eH0c[/youtube]

But use this alternate syntax only if you can't get the first syntax to work.

Please note that most videos will involve subject matter that is only appropriate in the forums in the Unix Lounge where rule 3 is not in force.
 

4 More Discussions You Might Find Interesting

1. What is on Your Mind?

Nice YouTube Videos

What are they doing? :D kyJHeIqYoLQ ---------- Post updated 11-14-09 at 10:24 AM ---------- Previous update was 11-13-09 at 04:53 PM ---------- Heard of them? Who's them? :b: Totally Hidden Extreme Magic (1/6) mSLMOUOtaQQ Totally Hidden Extreme Magic (2/6) 2bwp2GUrNNc Totally... (3 Replies)
Discussion started by: sparcguy
3 Replies

2. War Stories

Any change on youtube for good?

I could not find the proper forum for this, though reading the headlines, but there is one struggle for normal downloads. I need a hint for the former normal download. About two weeks it may be that the well known youtube platform makes it quite dificult to download some files. So I tried wget,... (2 Replies)
Discussion started by: 1in10
2 Replies

3. UNIX for Beginners Questions & Answers

Problems to install youtube-dl

Hello, I have been experimenting several difficulties to install youtube-dl. On its website, it suggests four different ways of installing it, using curl, wget, pip or brew. I tried the first one following the command that they gave: which resulted in: The second suggestions that tells... (3 Replies)
Discussion started by: colt
3 Replies

4. What is on Your Mind?

YouTube: How to Use Code Tags and Format Posts @UNIX.com

By special request, and long overdue, I have updated our "code tags" video and so now we have: How to Use Code Tags and Format Posts @UNIX.com in 4K https://youtu.be/4BuPvWJV__k (3 Replies)
Discussion started by: Neo
3 Replies
SVNPATH(1)                                                                                                                              SVNPATH(1)

NAME
svnpath - output svn url with support for tags and branches SYNOPSIS
svnpath svnpath tags svnpath branches svnpath trunk DESCRIPTION
svnpath is intended to be run in a Subversion working copy. In its simplest usage, svnpath with no parameters outputs the svn url for the repository associated with the working copy. If a parameter is given, svnpath attempts to instead output the url that would be used for the tags, branches, or trunk. This will only work if it's run in the top-level directory that is subject to tagging or branching. For example, if you want to tag what's checked into Subversion as version 1.0, you could use a command like this: svn cp $(svnpath) $(svnpath tags)/1.0 That's much easier than using svn info to look up the repository url and manually modifying it to derive the url to use for the tag, and typing in something like this: svn cp svn+ssh://my.server.example/svn/project/trunk svn+ssh://my.server.example/svn/project/tags/1.0 svnpath uses a simple heuristic to convert between the trunk, tags, and branches paths. It replaces the first occurrence of trunk, tags, or branches with the name of what you're looking for. This will work ok for most typical Subversion repository layouts. If you have an atypical layout and it does not work, you can add a ~/.svnpath file. This file is perl code, which can modify the path in $url. For example, the author uses this file: #!/usr/bin/perl # svnpath personal override file # For d-i I sometimes work from a full d-i tree branch. Remove that from # the path to get regular tags or branches directories. $url=~s!d-i/(rc|beta)[0-9]+/!!; $url=~s!d-i/sarge/!!; 1 LICENSE
GPL version 2 or later AUTHOR
Joey Hess <joey@kitenet.net> Debian Utilities 2013-12-23 SVNPATH(1)
All times are GMT -4. The time now is 08:21 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy