Hi Team,
I'm exporting animation files using mechanical scripting as below:
animation_export_format = (Ansys.Mechanical.DataModel.Enums.GraphicsAnimationExportFormat.MP4)
settings_720p = Ansys.Mechanical.Graphics.AnimationExportSettings()
settings_720p.Width = 1280
settings_720p.Height = 720
deformation.ExportAnimation(os.path.join(cwd_1,"deformation.mp4"), animation_export_format, settings_720p)
But when I try to display on web browser, animations files are not supporting expect .gif files, when I use web optimized and encode the video, then it was loading in web browser.
Any suggestions here.?