Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

play vedio using SAP

Former Member
0 Likes
1,376

hi experts:

how to play vedil and audio by using SAP?

thanks.

1 ACCEPTED SOLUTION
Read only

former_member156446
Active Contributor
0 Likes
1,222

Check this Raymond Giuseppi post.

hi experts:

how to play vedil and audio by using SAP?

thanks.

6 REPLIES 6
Read only

Former Member
0 Likes
1,222

Using RTMW application, a prototype of integrating RTP/RTCP and SDP/SAP into the Web which allows Web users to join an MBone session and receive audio/video seamlessly. In addition, this enables minimal QoS control by monitoring. A RTMW is Internet community standards compliant and interoperable with other MBone applications.As an access to the information on the Web is asynchronous, the Web based on a strict TCP/IP client-server model can not provide real-time information sharing support. So, in order to bring multicast audio/video to the Web, architecture extension for real-time continuous media transmission and session directory services embedded into the Web is needed.

stream via UDP or RTP (with SAP announcements) the video (with audio) coming directly into the card's composite connector (input 1).

Thanks,

AMS

Read only

former_member156446
Active Contributor
0 Likes
1,223

Check this Raymond Giuseppi post.

Read only

awin_prabhu
Active Contributor
0 Likes
1,222

Hi,

Use any one method below.

But first method is obsolete now.

REPORT ztest.

CALL FUNCTION 'GUI_RUN'

EXPORTING

command = 'D:\AB.wmv'.

(or)

CALL METHOD cl_gui_frontend_services=>execute

EXPORTING

application = 'D:\AB.wmv'.

Read only

0 Likes
1,222

dear sap fan:

first thanks for your reply

I found it play vedio by using local computer player.

Can I use one control to play vedio?just like use container display ALV or picture.

Read only

awin_prabhu
Active Contributor
0 Likes
1,222

Hi,

Use any one method below.

But first method is obsolete now.

REPORT ztest.

CALL FUNCTION 'GUI_RUN'

EXPORTING

command = 'D:\AB.wmv'. <--- Path of ur file

(or)

CALL METHOD cl_gui_frontend_services=>execute

EXPORTING

application = 'D:\AB.wmv'. <--- Path of ur file

Read only

Former Member
0 Likes
1,222

Hi,

Try this

Check this class cl_gui_frontend_services

Example

DATA: l_return TYPE C,

document TYPE string value 'C:\WINDOWS\Media\Alarm.wav'.

CALL METHOD cl_gui_frontend_services=>execute

EXPORTING

document = document

minimized = 'X'.

Hope it helps.

Regards,

Rajesh Kumar