Skip to main content
April 19, 2022
Question

is there a way to upload videos to the system and then have other users to watch it?

  • April 19, 2022
  • 1 reply
  • 0 views

Web Video will not work since it only plays videos that have already been uploaded to the website by a different way

1 reply

mikes0011
Brainy
April 19, 2022

I think you can accomplish this by passing the in-Appian URL of the uploaded video file, i.e. perhaps by using "document(ri!videoFileId, "url")".  I'll see if I can confirm in my community site.

Edit: tried it out and it works fine.

a!videoField(
  label: "Video",
  labelPosition: "ABOVE",
  videos: {
    a!webVideo(
      source: document(cons!MS_TEST_VIDEO, "url")
    )
  }
)

The Expression Guru