How to watch multimedia in a web browser made in java

0

I have created a very basic web browser using javafx, apparently it works, the detail is that when entering any page that has a video, I can not see it, I would like to know how I can improve this detail.

    
asked by Cristhian Pineda 06.01.2018 в 00:52
source

1 answer

1

I also had problems implementing a browser in JavaFX, in my case it was to visualize the street view of google maps, I recommend that you implement the Framework JCEF based on Chromium, it gives a plus to your project:

The Java Chromium Embedded Framework (JCEF) is a simple framework for embedding Chromium-based browsers in other applications using the Java programming language.

And if you do not have problems with spending a "little" I also recommend JxBrowser : Integrate to Chromium-based browser with your Java app to process and display HTML5, CSS3, JavaScript, Flash etc.

Personally use both and both are very good, but JxBrowser has facilities that you would have to implement in JCEF.

Greetings.

    
answered by 06.01.2018 в 01:06