Embedding video issues

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Serja13
    New Member
    • Feb 2007
    • 2

    #1

    Embedding video issues

    Hi everyone,

    I have a very simple task of trying to embed a video into a page. It works great in an html page for me, but it doesn't produce the video in an htm page that is being pulled into an aspx frame.

    The code that works great in HTML but not in the other is this:
    <OBJECT classid="clsid: 02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" width="500" height="400" codebase="http://www.apple.com/qtactivex/qtplugin.cab">
    <param name="src" value="autocare .mpg" />
    <param name="autoplay" value="true" />
    <param name="controlle r" value="true" />
    <param name="loop" value="false" />
    <EMBED src="autocare.m pg" width="480" height="400" autoplay="true" controller="tru e" loop="false" pluginspage="ht tp://www.apple.com/quicktime/download/">
    </EMBED>
    </OBJECT>

    I can see the player in the html page, but not in the aspx page.

    Question is, do I have to treat this as a web control? If so, any tips tricks shortcuts ?
    Thanks so much
  • Motoma
    Recognized Expert Specialist
    • Jan 2007
    • 3236

    #2
    Originally posted by Serja13
    Hi everyone,

    I have a very simple task of trying to embed a video into a page. It works great in an html page for me, but it doesn't produce the video in an htm page that is being pulled into an aspx frame.

    The code that works great in HTML but not in the other is this:
    <OBJECT classid="clsid: 02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" width="500" height="400" codebase="http://www.apple.com/qtactivex/qtplugin.cab">
    <param name="src" value="autocare .mpg" />
    <param name="autoplay" value="true" />
    <param name="controlle r" value="true" />
    <param name="loop" value="false" />
    <EMBED src="autocare.m pg" width="480" height="400" autoplay="true" controller="tru e" loop="false" pluginspage="ht tp://www.apple.com/quicktime/download/">
    </EMBED>
    </OBJECT>

    I can see the player in the html page, but not in the aspx page.

    Question is, do I have to treat this as a web control? If so, any tips tricks shortcuts ?
    Thanks so much
    Are the ASPX page and the HTML page in the same directory? If not, you will need to correct the relative path for the video file, either change it, or more preferably make it an absolute path.

    Comment

    Working...