Hi,
Hi Neeraj,
Hi,
Hi Neeraj,
I have observed your requirements and like to share that you can export a presentation with embedded video to HTML with video inside exported HTML. Please visit the documentation article, Exporting Presentation Into HTML file with Video for your kind reference.
Many Thanks,
Thanks for your response.
In other words, I want to use both <span style=“font-size: 10pt; font-family: “Courier New”; color: rgb(51, 51, 51);”>VideoPlayerHtmlController as well as <span style=“color: rgb(51, 51, 51); font-family: “Courier New”; font-size: 10pt;”>ResponsiveHtmlController.
Hi Neeraj,
Thank you for further elaboration. I have observed your requirements and like to share that at present the requirement of using both VideoPlayerHtmlController as well as ResponsiveHtmlController simultaneously is not possible. I have added an issue with ID SLIDESJAVA-36361 in our issue tracking system to investigate the possibility of implementing the requested support. This thread has been linked with the issue so that you may be automatically notified once the support will be available.
Many Thanks,<span style=“color: rgb(51, 51, 51); font-family: “Courier New”; font-size: 10pt;”>
Hi,
Has there been any progress made on this particular requirement? Being able to use both the VideoPlyaerHtmlController and the ResponsiveHtmlController is something that we also need for our application.
Thanks,
Chelsey
I have observed your comments. I regret to inform that issue is still unresolved owing to missing support in Aspose.Slides. The issue is blocked owing to missing implementation in Aspose.Slides for .NET. It will be first investigate and resolved in Aspose.Slides for .NET first and will then be ported to Aspose.Slides for Java. We will share good news with you soon.
We have internally observed the requirements. Can you please describe your case where you need HTML export for. Can you please give some real-world examples or just describe the scenario and desirable features? In addition, we would be very grateful if you provides some sample presentations and desired HTML snippets.
PS. This is needed for planing our new big feature - highly customizable HTML export and is not going to be implemented soon.
@neergupta,
Please try using the following code snippet with Aspose.Slides 22.8:
Presentation pres = new Presentation("pres.pptx");
try {
Html5Options html5Options = new Html5Options();
html5Options.setAnimateShapes(true);
html5Options.setAnimateTransitions(true);
pres.save("pres.html", SaveFormat.Html5, html5Options);
} finally {
if (pres != null) pres.dispose();
}