Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Need to insert a mp4 local file in a QV app

Hi,

I need to insert a mp4 file (Local) in an app. I´ve looked in several post but all of them are from two or more years ago, is it possible to add this kind of file?

Tnks for your comments.

Slds,

Adrian E

12 Replies
Frank_Hartmann
Master II
Master II

You need to use an extension for this.

see attached file

MK_QSL
MVP
MVP

I think MP3 file is possible.. Not sure about MP4..

Go to Script

Press CTRL

Now One by one press Q   M   P   3

This will give you script to get the MP3 properties.

Create a QlikView Music Player - Living Qlik

Aurelien_Martinez
Partner - Specialist II
Partner - Specialist II

It's working for me with .avi et .mkv

for each vExt in 'asf', 'wma', 'wmv', 'mkv', 'avi'

for each vFoundFile in filelist( 'E:\film\*.'& vExt )

FileList:

Load FileLongName,

    subfield(FileLongName,'\',-1) as FileShortName,

    num(FileSize(FileLongName),'# ### ### ###',',',' ') as FileSize,

    FileTime(FileLongName) as FileTime;

Load @1:n as FileLongName Inline "$(vFoundFile)" (fix, no labels);

Next vFoundFile

Next vExt

Info LOAD

  FileShortName,

  FileLongName

Resident FileList

;

Help users find answers! Don't forget to mark a solution that worked for you!
Not applicable
Author

Thank you,

Could you help me a little bit more? Basically I should copy the script and chance ( 'E:\film\*.'& vExt )  the location of my file? or I must do something else?

Thank you so much.

Regards,

Adrian E

Aurelien_Martinez
Partner - Specialist II
Partner - Specialist II

You need to replace E:\films\ by the location of your file.

Help users find answers! Don't forget to mark a solution that worked for you!
sunny_talwar

How do you play these MP3 in QlikView?

Aurelien_Martinez
Partner - Specialist II
Partner - Specialist II

With the Info load, when I clic on in the liste box caption, Windows Media Player or VLC play the video or the music.

Help users find answers! Don't forget to mark a solution that worked for you!
sunny_talwar

Nice . And this still works on Access Point?

Aurelien_Martinez
Partner - Specialist II
Partner - Specialist II

I haven't try

Help users find answers! Don't forget to mark a solution that worked for you!