cancel
Showing results for 
Search instead for 
Did you mean: 
Reply

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

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.

 

 

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.

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

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

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!

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

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

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

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

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

Community will be READ ONLY July 16th, 5p PDT -July 22nd

Dear Community Members,   We'd like to let you know of an upcoming change to the community platform: starting July 16th, the platform will transition to a READ ONLY mode until July 22nd.   During this period, members will not be able to Kudo, Comment, or Reply to any posts.   On July 22nd, please be on the lookout for a message sent to the email address registered on your community profile. This email is crucial as it will contain your unique code and link to register for the new platform encompassing all of the communities.   What to Expect in the New Community: A more unified experience where all products, including Power Apps, Power Automate, Copilot Studio, and Power Pages, will be accessible from one community.Community Blogs that you can syndicate and link to for automatic updates. We appreciate your understanding and cooperation during this transition. Stay tuned for the exciting new features and a seamless community experience ahead!

Summer of Solutions | Week 4 Results | Winners will be posted on July 24th

We are excited to announce the Summer of Solutions Challenge!    This challenge is kicking off on Monday, June 17th and will run for (4) weeks.  The challenge is open to all Power Platform (Power Apps, Power Automate, Copilot Studio & Power Pages) community members. We invite you to participate in a quest to provide solutions to as many questions as you can. Answers can be provided in all the communities.    Entry Period: This Challenge will consist of four weekly Entry Periods as follows (each an “Entry Period”)   - 12:00 a.m. PT on June 17, 2024 – 11:59 p.m. PT on June 23, 2024 - 12:00 a.m. PT on June 24, 2024 – 11:59 p.m. PT on June 30, 2024 - 12:00 a.m. PT on July 1, 2024 – 11:59 p.m. PT on July 7, 2024 - 12:00 a.m. PT on July 8, 2024 – 11:59 p.m. PT on July 14, 2024   Entries will be eligible for the Entry Period in which they are received and will not carryover to subsequent weekly entry periods.  You must enter into each weekly Entry Period separately.   How to Enter: We invite you to participate in a quest to provide "Accepted Solutions" to as many questions as you can. Answers can be provided in all the communities. Users must provide a solution which can be an “Accepted Solution” in the Forums in all of the communities and there are no limits to the number of “Accepted Solutions” that a member can provide for entries in this challenge, but each entry must be substantially unique and different.    Winner Selection and Prizes: At the end of each week, we will list the top ten (10) Community users which will consist of: 5 Community Members & 5 Super Users and they will advance to the final drawing. We will post each week in the News & Announcements the top 10 Solution providers.  At the end of the challenge, we will add all of the top 10 weekly names and enter them into a random drawing.  Then we will randomly select ten (10) winners (5 Community Members & 5 Super Users) from among all eligible entrants received across all weekly Entry Periods to receive the prize listed below. If a winner declines, we will draw again at random for the next winner.  A user will only be able to win once overall. If they are drawn multiple times, another user will be drawn at random.  Individuals will be contacted before the announcement with the opportunity to claim or deny the prize.  Once all of the winners have been notified, we will post in the News & Announcements of each community with the list of winners.   Each winner will receive one (1) Pass to the Power Platform Conference in Las Vegas, Sep. 18-20, 2024 ($1800 value). NOTE: Prize is for conference attendance only and any other costs such as airfare, lodging, transportation, and food are the sole responsibility of the winner. Tickets are not transferable to any other party or to next year’s event.   ** PLEASE SEE THE ATTACHED RULES for this CHALLENGE**   Week 1 Results: Congratulations to the Week 1 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge.   Community MembersNumber SolutionsSuper UsersNumber Solutions Deenuji 9 @NathanAlvares24  17 @Anil_g  7 @ManishSolanki  13 @eetuRobo  5 @David_MA  10 @VishnuReddy1997  5 @SpongYe  9JhonatanOB19932 (tie) @Nived_Nambiar  8 @maltie  2 (tie)   @PA-Noob  2 (tie)   @LukeMcG  2 (tie)   @tgut03  2 (tie)       Week 2 Results: Congratulations to the Week 2 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Week 2: Community MembersSolutionsSuper UsersSolutionsPower Automate  @Deenuji  12@ManishSolanki 19 @Anil_g  10 @NathanAlvares24  17 @VishnuReddy1997  6 @Expiscornovus  10 @Tjan  5 @Nived_Nambiar  10 @eetuRobo  3 @SudeepGhatakNZ 8     Week 3 Results: Congratulations to the Week 3 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Week 3:Community MembersSolutionsSuper UsersSolutionsPower Automate Deenuji32ManishSolanki55VishnuReddy199724NathanAlvares2444Anil_g22SudeepGhatakNZ40eetuRobo18Nived_Nambiar28Tjan8David_MA22   Week 4 Results: Congratulations to the Week 4 qualifiers, you are being entered in the random drawing that will take place at the end of the challenge. Week 4:Community MembersSolutionsSuper UsersSolutionsPower Automate Deenuji11FLMike31Sayan11ManishSolanki16VishnuReddy199710creativeopinion14Akshansh-Sharma3SudeepGhatakNZ7claudiovc2CFernandes5 misc2Nived_Nambiar5 Usernametwice232rzaneti5 eetuRobo2   Anil_g2   SharonS2  

Check Out | 2024 Release Wave 2 Plans for Microsoft Dynamics 365 and Microsoft Power Platform

On July 16, 2024, we published the 2024 release wave 2 plans for Microsoft Dynamics 365 and Microsoft Power Platform. These plans are a compilation of the new capabilities planned to be released between October 2024 to March 2025. This release introduces a wealth of new features designed to enhance customer understanding and improve overall user experience, showcasing our dedication to driving digital transformation for our customers and partners.    The upcoming wave is centered around utilizing advanced AI and Microsoft Copilot technologies to enhance user productivity and streamline operations across diverse business applications. These enhancements include intelligent automation, AI-powered insights, and immersive user experiences that are designed to break down barriers between data, insights, and individuals. Watch a summary of the release highlights.    Discover the latest features that empower organizations to operate more efficiently and adaptively. From AI-driven sales insights and customer service enhancements to predictive analytics in supply chain management and autonomous financial processes, the new capabilities enable businesses to proactively address challenges and capitalize on opportunities.    

Updates to Transitions in the Power Platform Communities

We're embarking on a journey to enhance your experience by transitioning to a new community platform. Our team has been diligently working to create a fresh community site, leveraging the very Dynamics 365 and Power Platform tools our community advocates for.  We started this journey with transitioning Copilot Studio forums and blogs in June. The move marks the beginning of a new chapter, and we're eager for you to be a part of it. The rest of the Power Platform product sites will be moving over this summer.   Stay tuned for more updates as we get closer to the launch. We can't wait to welcome you to our new community space, designed with you in mind. Let's connect, learn, and grow together.   Here's to new beginnings and endless possibilities!   If you have any questions, observations or concerns throughout this process please go to https://aka.ms/PPCommSupport.   To stay up to date on the latest details of this migration and other important Community updates subscribe to our News and Announcements forums: Copilot Studio, Power Apps, Power Automate, Power Pages

Users online (1,972)