cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
Gonza1
Helper I
Helper I

How to get total and current time from web videos correctly

Hi, I approached this with Extract text with OCR, then dividing that text by the slash, and because I needed it to be in seconds, I did the same but with ":", multiplying the minutes by 60, and then adding that to the seconds after the sign. However, there is an error telling me the total seconds aren't in a numeric value. Is the problem related to conversion, or to the actions already mentioned?
What should be corrected specifically?

Captura de pantalla 2024-02-04 164931.pngCaptura de pantalla 2024-02-04 164954.png

1 ACCEPTED SOLUTION

Accepted Solutions
WillSG
Resolver III
Resolver III

Hi @Gonza1   I hope you are doing well.

 

 

I see, use this approach to validate the result that the output variable is showing and please share the result, with a Display Message action you can validate exactly and easily the outcome.

 

Here below is the snipped code of that action, please just copy and paste:

 

Display.ShowMessageDialog.ShowMessage Title: $'''Hola!''' Message: $'''Total de Segundos: %TiempoTotalEnSegundos%''' Icon: Display.Icon.None Buttons: Display.Buttons.OK DefaultButton: Display.DefaultButton.Button1 IsTopMost: True ButtonPressed=> ButtonPressed

 

 

Also, if you feel comfortable, copy your PAD actions, and share them, so I can look and we can try to resolve this together.

 

Please let me know if it works, happy automation!

 

If I have addressed your inquiry successfully, kindly consider marking my response as the preferred solution. If you found my assistance helpful, a 'Thumbs Up' would be greatly appreciated.

 

Additionally, I offer specialized consultancy and development services leveraging PAD. If you're interested in exploring these services further, feel free to DM me, and we can initiate a discussion.

 

Finally, here is my LinkedIn Profile if you want to follow or connect with me.

 

Kind regards,

 

Will SG

Managing Director & Automation Lead

RAMS CR (Recruitment & Automation)

View solution in original post

22 REPLIES 22
UshaJyothi20
Super User
Super User

HI @Gonza1 

Please convert the variable which has the time into numeric value.

since the number is taken as text in default the bot is unable to do mathematical operations with it.

 

I could not find the variable since the flow is in other language which I am unaware.

 

Hope this may be the variable  %TiempoTotalEnsegundos%   

Use convert text to number activity and give this variable as input then use that output for further operations.

UshaJyothi20_0-1707369290966.png

 

Hope this helps,

Usha.

 

 

Gonza1
Helper I
Helper I

Thanks for the answer @UshaJyothi20!

 

It's in spanish and I tried to change language, the option unfortunately isn't there.

 

I changed all the variables that should be number to it, even those who come from a mathematical operation to be sure, and one of the errors has been solved. However, 2 of them are still there. I think the second can be solved relatively easily. The first one is the one that appears in the loop in the image.

I'm wondering if using OCR to recognize the value is correct, or if it's better to extract it as an UI element, could it be related to that?

By the way, what I'm trying to do is capturing video from links like these (https://dev.epicgames.com/community/learning/courses/pxm/unreal-engine-creating-pbr-materials/5rM/un...) for better playback (video stops as if internet speed wasn't enough even if it is). Maybe there is an easier way.

Could you please try with Extract data from web page?

 

Hope this helps

Usha.

Usha, I now tried to simplify by making a new flow for testing purposes, using "Extract data from web page", and the time text doesn't appear as a variable. Apparently the mouse click to start the video (required step before seeing the time) isn't generating the playback, but I don't know why.Captura de pantalla 2024-02-08 135108.png

In english, this would be: "Initiate Chrome", "Move mouse to 'Span'(UI Element)", "Send click", "Wait 3 seconds", and "Extract data from web page".

Please see the result without using send mouse click..... Once again please let me know what you need and where you are getting the problem.

Gonza1
Helper I
Helper I

Without the mouse click, the variable is still white.

 

So, what I'm doing with this is going step by step to see why it doesn't get the number variable, and this shows that with these steps, the variable isn't captured, so this could be the problem.

 

The thing is, how do we get it? If you could try directly from the link (https://dev.epicgames.com/community/learning/courses/pxm/unreal-engine-creating-pbr-materials/5rM/un...) only to know how to extract the time values, it would be extremely helpful.

WillSG
Resolver III
Resolver III

Hi @Gonza1  I hope you are doing well.

 

Sometimes there are blank spaces at the beginning or end of a value, so instead of OR in addition to the Text to Number action, use the Trim action, this action will help you “Clean” the value, especially if it has blank spaces.

 

Also, I tested the link you shared, and I was able to extract the time with the “Get Details of Element on Web” action.

 

Then, I use the split and trim actions to get the values and finally I used the set variable to perform the calculation.

 

Here is the snipped below and check the attached image.

 

Text.SplitText.SplitWithDelimiter Text: AttributeValue2 CustomDelimiter: $'''/''' IsRegEx: False Result=> TextList

Text.Trim Text: TextList[1] TrimOption: Text.TrimOption.Both TrimmedText=> TrimmedText

Text.SplitText.SplitWithDelimiter Text: TrimmedText CustomDelimiter: $''':''' IsRegEx: False Result=> TextList2

SET MinutesToSeconds TO TextList2[0] * 60

SET TotalSeconds TO TextList2[1] + MinutesToSeconds

Display.ShowMessageDialog.ShowMessage Title: $'''Hola!''' Message: $'''Total de Segundos: %TotalSeconds%''' Icon: Display.Icon.None Buttons: Display.Buttons.OK DefaultButton: Display.DefaultButton.Button1 IsTopMost: True ButtonPressed=> ButtonPressed

 

 

Please let me know if it works, happy automation!,


If I have addressed your inquiry successfully, kindly consider marking my response as the preferred solution. If you found my assistance helpful, a 'Thumbs Up' would be greatly appreciated.

 

Additionally, I offer specialized consultancy and development services leveraging PAD. If you're interested in exploring these services further, feel free to DM me, and we can initiate a discussion.

 

Kind regards,

 

Will SG

Managing Director & Automation Lead

RAMS CR (Recruitment & Automation)

LinkedIn Profile

 

WillSG_Screenshot 2024-02-08 193426.pngWillSG_Screenshot 2024-02-08 194540_2.png

Gonza1
Helper I
Helper I

Well, this proved to be really useful, thank you very much!

Incredibly, some actions were really similar but weren't working well, like "moving mouse to", and "clicking", gave a different result than "click link on a web page", as "extract data from webpage" wasn't the same as "get details of element on web page".

 

I will continue with the rest of the flow later to see if it solves the errors, but thanks again!

Hey @Gonza1  I’m super happy that you like it and learn something new.

If I have addressed your inquiry successfully, kindly consider marking my response as the preferred solution. If you found my assistance helpful, a 'Thumbs Up' would be great appreciate it.

 

Kind regards,

Will SG

Managing Director & Automation Lead

RAMS CR (Recruitment & Automation)

LinkedIn Profile

Gonza1
Helper I
Helper I

For now, it works, I only need to test in the entire flow, which I'm going to, later. If I need more help I continue the thread, and if not, I mark it as the solution! Thanks again!

Gonza1
Helper I
Helper I

Ok, so I tried this and a lot of errors are solved!

However, a new message appears which says: "The text 6x60 (it's the multiplication to get seconds) can't be converted to number (format not recognized or too many characters)", as if it didn't do the multiplication. However, it should, because I already changed the format to number.

 

Captura de pantalla 2024-02-09 194117.png

This time, the error appears when I execute the flow. It lets me execute it.

 

For better understanding, with "Total", I'm referring to the total duration of the video, not the current time in the playback. Also the expression "ComoNumero" means "AsANumber".

Hola @Gonza1  Espero que estes muy bien!

 

Mira me alegra mucho que el código que te compartí te haya funcionado.

 

Ese código funciona super bien, sin embargo, veo en tu estas tratando de convertir Texto a Numero en la acción # 16, 17 , 19 y 21.

 

Ahí no tienes un Texto, tienes un número, pero ese número tiene espacios adelante o atrás, por eso te daba error, pero al usar la acción recortar Texto, ahí ya se soluciono el problema.

 

Lo único que debes hacer es eliminar las acciones antes mencionadas.

 

 

Cualquier consulta me avisas!

 

PS: Yo hablo espan’ol 😉

 

 

Please let me know if it works, happy automation!,


If I have addressed your inquiry successfully, kindly consider marking my response as the preferred solution. If you found my assistance helpful, a 'Thumbs Up' would be greatly appreciated.

 

Additionally, I offer specialized consultancy and development services leveraging PAD. If you're interested in exploring these services further, feel free to DM me, and we can initiate a discussion.

 

Kind regards,

 

Will SG

Managing Director & Automation Lead

RAMS CR (Recruitment & Automation)

LinkedIn Profile

Gonza1
Helper I
Helper I

Jajaja, buen español!
I did this and only 1 error remains!

This is the part that apparently generates the errorThis is the part that apparently generates the errorThe error itselfThe error itself

How the total seconds time doesn't appear as a number expression? The action is in seconds by default, and the number comes from mathematical operations that don't give error

Hi @Gonza1  I hope you are doing well.

 

Are you using another video? If yes, it’s required to check the elements from that video to validate the output that you are getting from the Get Details action.

 

Now, the first video link was 397 seconds long, however the issue that you are having right now is less than 120 seconds, or at least that what I’m understating from the #39 action.

 

One way to debug and understand which value the variable has is to use a Display Message action, here below is the snipped code of that action, please copy and paste before action #39 so you will see which value is that variable containing.

 

 

Display.ShowMessageDialog.ShowMessage Title: $'''Hola!''' Message: $'''Total de Segundos: %TiempoTotalEnSegundos%''' Icon: Display.Icon.None Buttons: Display.Buttons.OK DefaultButton: Display.DefaultButton.Button1 IsTopMost: True ButtonPressed=> ButtonPressed

 

 

Please let me know if it works, happy automation!,


If I have addressed your inquiry successfully, kindly consider marking my response as the preferred solution. If you found my assistance helpful, a 'Thumbs Up' would be greatly appreciated.

 

Additionally, I offer specialized consultancy and development services leveraging PAD. If you're interested in exploring these services further, feel free to DM me, and we can initiate a discussion.

 

Kind regards,

 

Will SG

Managing Director & Automation Lead

RAMS CR (Recruitment & Automation)

LinkedIn Profile

Gonza1
Helper I
Helper I

Hi @WillSG, the video is the same one, and the action 39 is there because I want to do this in various sites, so it will need to check if its duration is less than 120 seconds in each one of them. That's related to the fact that the video stops after those first 2 minutes, so it needs to wait.

I made a Display message and it shows the minutes and the seconds correctly. However, still doesn't multiply the minutes by 60 for some reason.

Hi @Gonza1  I hope you are doing well.

 

I understand that, using the Display Message Action to debug your code will help you, you can put all the required variables into it to validate the results.

 

Also, please check your calculation method to review why the minutos are not being multiplied by 60.

 

The calculation should be like this:


%TextList2[0] * 60%

 

Please let me know if it works, happy automation!,


If I have addressed your inquiry successfully, kindly consider marking my response as the preferred solution. If you found my assistance helpful, a 'Thumbs Up' would be greatly appreciated.

 

Additionally, I offer specialized consultancy and development services leveraging PAD. If you're interested in exploring these services further, feel free to DM me, and we can initiate a discussion.

 

Kind regards,

 

Will SG

Managing Director & Automation Lead

RAMS CR (Recruitment & Automation)

LinkedIn Profile

Gonza1
Helper I
Helper I

Ok, I think we're in the right direction!

 

Captura de pantalla 2024-02-16 173822.png

I don't get why they made it so the multiplication should be inside that variable format, but that worked well. Now, I'm in the step where it's trying to add the seconds to the minutes. Should I add them the same way, between the percentage signs?

Hi @Gonza1  I hope you are doing well.

 

Yeah, I totally agree with you, back this go really back when PAD belong to Softomotive, so the answer is yes, any mathematical calculation have to be done between the % sign.

 

So, if you want to add the seconds to the minutes/seconds results, the calculation should be like this:


%Minutes + Seconds%

 

Please let me know if it works, happy automation!,


If I have addressed your inquiry successfully, kindly consider marking my response as the preferred solution. If you found my assistance helpful, a 'Thumbs Up' would be greatly appreciated.

 

Additionally, I offer specialized consultancy and development services leveraging PAD. If you're interested in exploring these services further, feel free to DM me, and we can initiate a discussion.

 

Kind regards,

 

Will SG

Managing Director & Automation Lead

RAMS CR (Recruitment & Automation)

LinkedIn Profile

Gonza1
Helper I
Helper I

We're so close! All that part has succeeded, and I will try to solve later a halt happening when recording with the Snipping Tool.

However, I saw that when changing "SegmentosDe2MinutosTotales" to "SegmentosDe2MinutosTotalesComoNúmero" (I think I left that action for debugging), the first variable, which was something like 3,833... changed to 38333, like if it didn't recognize the comma as part of the number.

Also, it's probable that an approximation, or ceil/floor function will be needed, but I will need to solve this "comma error" before that. The rest shouldn't be difficult at all.

Helpful resources

Announcements

Celebrating the May Super User of the Month: Laurens Martens

  @LaurensM  is an exceptional contributor to the Power Platform Community. Super Users like Laurens inspire others through their example, encouragement, and active participation. We are excited to celebrated Laurens as our Super User of the Month for May 2024.   Consistent Engagement:  He consistently engages with the community by answering forum questions, sharing insights, and providing solutions. Laurens dedication helps other users find answers and overcome challenges.   Community Expertise: As a Super User, Laurens plays a crucial role in maintaining a knowledge sharing environment. Always ensuring a positive experience for everyone.   Leadership: He shares valuable insights on community growth, engagement, and future trends. Their contributions help shape the Power Platform Community.   Congratulations, Laurens Martens, for your outstanding work! Keep inspiring others and making a difference in the community!   Keep up the fantastic work!        

Check out the Copilot Studio Cookbook today!

We are excited to announce our new Copilot Cookbook Gallery in the Copilot Studio Community. We can't wait for you to share your expertise and your experience!    Join us for an amazing opportunity where you'll be one of the first to contribute to the Copilot Cookbook—your ultimate guide to mastering Microsoft Copilot. Whether you're seeking inspiration or grappling with a challenge while crafting apps, you probably already know that Copilot Cookbook is your reliable assistant, offering a wealth of tips and tricks at your fingertips--and we want you to add your expertise. What can you "cook" up?   Click this link to get started: https://aka.ms/CS_Copilot_Cookbook_Gallery   Don't miss out on this exclusive opportunity to be one of the first in the Community to share your app creation journey with Copilot. We'll be announcing a Cookbook Challenge very soon and want to make sure you one of the first "cooks" in the kitchen.   Don't miss your moment--start submitting in the Copilot Cookbook Gallery today!     Thank you,  Engagement Team

Announcing Power Apps Copilot Cookbook Gallery

We are excited to share that the all-new Copilot Cookbook Gallery for Power Apps is now available in the Power Apps Community, full of tips and tricks on how to best use Microsoft Copilot as you develop and create in Power Apps. The new Copilot Cookbook is your go-to resource when you need inspiration--or when you're stuck--and aren't sure how to best partner with Copilot while creating apps.   Whether you're looking for the best prompts or just want to know about responsible AI use, visit Copilot Cookbook for regular updates you can rely on--while also serving up some of your greatest tips and tricks for the Community. Check Out the new Copilot Cookbook for Power Apps today: Copilot Cookbook - Power Platform Community.  We can't wait to see what you "cook" up!    

Welcome to the Power Automate Community

You are now a part of a fast-growing vibrant group of peers and industry experts who are here to network, share knowledge, and even have a little fun.   Now that you are a member, you can enjoy the following resources:   Welcome to the Community   News & Announcements: The is your place to get all the latest news around community events and announcements. This is where we share with the community what is going on and how to participate.  Be sure to subscribe to this board and not miss an announcement.   Get Help with Power Automate Forums: If you're looking for support with any part of Power Automate, our forums are the place to go. From General Power Automate forums to Using Connectors, Building Flows and Using Flows.  You will find thousands of technical professionals, and Super Users with years of experience who are ready and eager to answer your questions. You now have the ability to post, reply and give "kudos" on the Power Automate community forums. Make sure you conduct a quick search before creating a new post because your question may have already been asked and answered. Galleries: The galleries are full of content and can assist you with information on creating a flow in our Webinars and Video Gallery, and the ability to share the flows you have created in the Power Automate Cookbook.  Stay connected with the Community Connections & How-To Videos from the Microsoft Community Team. Check out the awesome content being shared there today.   Power Automate Community Blog: Over the years, more than 700 Power Automate Community Blog articles have been written and published by our thriving community. Our community members have learned some excellent tips and have keen insights on the future of process automation. In the Power Automate Community Blog, you can read the latest Power Automate-related posts from our community blog authors around the world. Let us know if you'd like to become an author and contribute your own writing — everything Power Automate-related is welcome.   Community Support: Check out and learn more about Using the Community for tips & tricks. Let us know in the Community Feedback  board if you have any questions or comments about your community experience. Again, we are so excited to welcome you to the Microsoft Power Automate community family. Whether you are brand new to the world of process automation or you are a seasoned Power Automate veteran - our goal is to shape the community to be your 'go to' for support, networking, education, inspiration and encouragement as we enjoy this adventure together.     Power Automate Community Team

Hear what's next for the Power Up Program

Hear from Principal Program Manager, Dimpi Gandhi, to discover the latest enhancements to the Microsoft #PowerUpProgram, including a new accelerated video-based curriculum crafted with the expertise of Microsoft MVPs, Rory Neary and Charlie Phipps-Bennett. If you’d like to hear what’s coming next, click the link below to sign up today! https://aka.ms/PowerUp  

Tuesday Tip | How to Report Spam in Our Community

It's time for another TUESDAY TIPS, your weekly connection with the most insightful tips and tricks that empower both newcomers and veterans in the Power Platform Community! Every Tuesday, we bring you a curated selection of the finest advice, distilled from the resources and tools in the Community. Whether you’re a seasoned member or just getting started, Tuesday Tips are the perfect compass guiding you across the dynamic landscape of the Power Platform Community.   As our community family expands each week, we revisit our essential tools, tips, and tricks to ensure you’re well-versed in the community’s pulse. Keep an eye on the News & Announcements for your weekly Tuesday Tips—you never know what you may learn!   Today's Tip: How to Report Spam in Our Community We strive to maintain a professional and helpful community, and part of that effort involves keeping our platform free of spam. If you encounter a post that you believe is spam, please follow these steps to report it: Locate the Post: Find the post in question within the community.Kebab Menu: Click on the "Kebab" menu | 3 Dots, on the top right of the post.Report Inappropriate Content: Select "Report Inappropriate Content" from the menu.Submit Report: Fill out any necessary details on the form and submit your report.   Our community team will review the report and take appropriate action to ensure our community remains a valuable resource for everyone.   Thank you for helping us keep the community clean and useful!

Users online (5,360)