I have the following problem, I haven't been able to find a solution to this:
I have a list of videos(they are played on the listing page) when I load a listing page
<ion-col class="category-item travel-category" size="12" *ngFor="let item of videos"
[routerLink]="['/app/video-admin/details', item.IdVideo]">
<app-video-player [videoId]="item.IdVideo">
</app-video-player >
</ion-col>
So what I need is to continue playing the video that is selected when it goes to the video detail page, Since the video is already playing I don't want to connect to the webrtc source again, it would take about 10 seconds to re-connect, how could I reuse the (app-video-player) component in the detail page "/app/video-admin/details" and keeping its state?
The easiest would be to reconnect and search where it was when clicked, but that means reconnection and searching where it was on the previous page(route) but that is exactly what I want to avoid, I think that's not a good solution.
The detail layout would have more controls, and basically only the selected video running
Any idea guys? thanks