hartmut Posted April 1, 2014 Posted April 1, 2014 Hi I was just wondering if anyone has ever tried to get the keywords or tags automatically from a Youtube video? I would like to see if this could be done? Any answers or guidance is appreciated. Thanks
eos Posted April 2, 2014 Posted April 2, 2014 Look at the page source to see how those data are enclosed, then use Insert from URL[] and parse them out using text functions, e.g. (assuming you've put the page source from a field into the variable $source) Let ( [ elem = "<meta name="keywords" content="" ; start = Position ( $source ; elem ; 1 ; 1 ) + Length ( elem ) ; end = Position ( $source ; ">" ; start ; 1 ) ] ; Middle ( $source ; start ; end - start - 1 ) )
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now