2009 Sep 02 2:33 AM
hi experts:
how to play vedil and audio by using SAP?
thanks.
2009 Sep 02 4:02 AM
hi experts:
how to play vedil and audio by using SAP?
thanks.
2009 Sep 02 3:27 AM
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
2009 Sep 02 4:02 AM
2009 Sep 02 4:17 AM
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'.
2009 Sep 02 8:39 AM
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.
2009 Sep 02 4:18 AM
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
2009 Sep 02 5:03 AM
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