Thanks for developing ForgeJS.
I appreciate it, as it has features that i find useful.
How do I place thumbnails of video scenes that I want synchronized into the Thumbnail Bar?
Could you provide full code to show how it is done with multiple videos?
Thanks
Scene Synchronization within Thumbnails Bar
Re: Scene Synchronization within Thumbnails Bar
Hi fruitygreen,
I guess you are talking about our ThumbnailBar plugin?
You need to create the images for each scene then declare the thumbnails in the json configuration of each scenes.
So you have a video and a thumbnail image for each scenes.
The following json is an example of a video scene configuration with thumbnail:
About the synchronization, are you talking about keeping the current time of the current video scene when you change from a scene to another and apply this time to the destination video scene ? If yes, you should take a look at this sample: scene-synchronization
If you take a look to its configuration, you will see the sync parameters. It is an array with all the uids of other scenes to be sync with.
example for a three scenes project with scene-1 to be sync with scene-2 and scene-3 (short code without thumbnails) :
All scene are synched !
Hope this helps, have a nice day
I guess you are talking about our ThumbnailBar plugin?
You need to create the images for each scene then declare the thumbnails in the json configuration of each scenes.
So you have a video and a thumbnail image for each scenes.
The following json is an example of a video scene configuration with thumbnail:
- {
- "uid": "scene-1",
- "name": "First scene",
- "slug": "first-scene",
- "description": "This is the first scene",
- "thumbnails":
- [
- {
- "uid": "thumbnail-1",
- "url": "./thumbnails/forest.jpg"
- }
- ],
- "media":
- {
- "uid": "media-1",
- "type": "video",
- "source":
- {
- "format": "equi",
- "url": "./videos/forest.mp4"
- }
- }
- }
About the synchronization, are you talking about keeping the current time of the current video scene when you change from a scene to another and apply this time to the destination video scene ? If yes, you should take a look at this sample: scene-synchronization
If you take a look to its configuration, you will see the sync parameters. It is an array with all the uids of other scenes to be sync with.
example for a three scenes project with scene-1 to be sync with scene-2 and scene-3 (short code without thumbnails) :
- {
- "uid": "scene-1",
- "name": "First scene",
- "sync": ["scene-2", "scene-3"],
- "media": { ... }
- },
- {
- "uid": "scene-2",
- "name": "Second scene",
- "sync": ["scene-1", "scene-3"],
- "media": { ... }
- },
- {
- "uid": "scene-3",
- "name": "Third scene",
- "sync": ["scene-1", "scene-2"],
- "media": { ... }
- }
All scene are synched !
Hope this helps, have a nice day

- Raphaël
-
- Posts: 9
- Joined: Sun Feb 19, 2017 7:51 am
Video as thumbnail in the Thumbnail Bar
Thanks for the reply.
Question: Can a video used as a thumbnail? Can it also be simultaneously be a video thumbnail synchronized as a scene?
It would be more like having multiple video thumbnails synchronised and used as mini previews, so when I click one of them a bigger video will play while still be in sync with the current timeline.
Question: Can a video used as a thumbnail? Can it also be simultaneously be a video thumbnail synchronized as a scene?
It would be more like having multiple video thumbnails synchronised and used as mini previews, so when I click one of them a bigger video will play while still be in sync with the current timeline.
Re: Scene Synchronization within Thumbnails Bar
Hello,
it is possible of course but it has a to be coded and it has a big bandwidth cost. I mean you need to be able te download all the videos at the same time. If you are building a local project bandwidth is not an issue.
In all cases this code does not exist and we do not plan to develop this kind of feature and synchronizing multiple videos at the same time is not an easy task!
We have already done this as a prototype for the Vrrooom project but it is working well only on a local setup.
Have a nice day!
it is possible of course but it has a to be coded and it has a big bandwidth cost. I mean you need to be able te download all the videos at the same time. If you are building a local project bandwidth is not an issue.
In all cases this code does not exist and we do not plan to develop this kind of feature and synchronizing multiple videos at the same time is not an easy task!
We have already done this as a prototype for the Vrrooom project but it is working well only on a local setup.
Have a nice day!
- Raphaël
-
- Posts: 9
- Joined: Sun Feb 19, 2017 7:51 am
Video Thumbnails
Thank you, it is something I would like.
I really would like the ability to have the features of video thumbnails, even if I would have it played locally.
I realized that ForgeJS was intended for for web use, but could you share a coded version that would allow me to use video in thumbnails .
This could be used as an app in which it could be distributed in its own local server.
Thanks again
I really would like the ability to have the features of video thumbnails, even if I would have it played locally.
I realized that ForgeJS was intended for for web use, but could you share a coded version that would allow me to use video in thumbnails .
This could be used as an app in which it could be distributed in its own local server.
Thanks again
Re: Scene Synchronization within Thumbnails Bar
We never code a Thumbnailbar plugin working with videos so I have nothing to share on that.
We used to play with multiple synchronized video but we do not kept this code as the result is unstable.
The plugin Thumbnailbar is open source so feel free to add your contribution or submit another version of a video Thumbnailbar plugin.
As far as I remember the concept is to have a master video (the current scene media) and the others thumbnail video should sync on the master current time... Something like that
Most of the stuff you can read about multiple html video sync stream are not very conclusive unfortunately...
Example: https://stackoverflow.com/questions/206 ... video-tags
We used to play with multiple synchronized video but we do not kept this code as the result is unstable.
The plugin Thumbnailbar is open source so feel free to add your contribution or submit another version of a video Thumbnailbar plugin.
As far as I remember the concept is to have a master video (the current scene media) and the others thumbnail video should sync on the master current time... Something like that

Most of the stuff you can read about multiple html video sync stream are not very conclusive unfortunately...
Example: https://stackoverflow.com/questions/206 ... video-tags
- Raphaël
-
- Posts: 9
- Joined: Sun Feb 19, 2017 7:51 am
Re: Scene Synchronization within Thumbnails Bar
Okay. I guess in time maybe we might see the video thumbnails. Perhaps when the nominal bandwidth throughput has increased significantly, someone will continue to develop the concept of video thumbnails.
Looking forward to more progress with ForgeJS.
Thanks
Looking forward to more progress with ForgeJS.
Thanks
Who is online
Users browsing this forum: No registered users and 1 guest