I am wondering how to play two videos one right after the other when I start the level

I currently have a level blueprint that plays an intro video using a media player but I do not know how to play the second video right after the first one ends. Currently after the first video ends, it goes straight to the game. So far after following a tutorial on YouTube about playing a video in ue4, I set up a blueprint to start the first video on level start but I need a way to play the second right after either doing a delay or a blueprint node to switch straight to the second in the media player list.

You can use GetDuration to know how long the first cutscene is, Delay for that amount of time, then play the second one.

Thank you but when I try and connect the node from the GetDuration to the delay, I cannot connect since it says that timespan structure is not compatible with float

Use GetTotalSeconds out of the GetDuration node. That gives you a float with the total duration in seconds.