Jump to content
Claris Engage 2025 - March 25-26 Austin Texas ×
The Claris Museum: The Vault of FileMaker Antiquities at Claris Engage 2025! ×

This topic is 3940 days old. Please don't post here. Open a new topic instead.

Recommended Posts

Posted

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

Posted

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 )
)

This topic is 3940 days old. Please don't post here. Open a new topic instead.

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.