לאתר זה תהיה פונקציונליות מוגבלת בזמן שאנו מתחזקים אותו לשיפור החוויה שלך. אם מאמר מסויים לא פותר את הבעיה שלך וברצונך לשאול שאלה, קהילת התמיכה שלנו מחכה לעזור לך ב־Twitter תחת ‎@FirefoxSupport וב־Reddit תחת ‎/r/firefox.

חיפוש בתמיכה

יש להימנע מהונאות תמיכה. לעולם לא נבקש ממך להתקשר או לשלוח הודעת טקסט למספר טלפון או לשתף מידע אישי. נא לדווח על כל פעילות חשודה באמצעות באפשרות ״דיווח על שימוש לרעה״.

מידע נוסף

FLV Files are not showing in Firefox but do in Chrome IE and Safari

  • 1 תגובה
  • 1 has this problem
  • 8 views
  • תגובה אחרונה מאת cor-el

more options

I have the following code on a webpage to display a video file stored in an external location

<object width="480" height="350">
<param name="movie" value="http://flvnetwork.com/assets/YTPlayer.swf" />
<param name="allowFullScreen" value="true" />
<param name="allowscriptaccess" value="always" />
<param name="flashvars" value="autostart=false&amp;frontcolor=lightblue&amp;backcolor=black&amp;file=http://flvnetwork.com/vod/iseehosting/media/lifejackets.flv&amp;image=http%3A%2F%2Fflvnetwork.com%2Fvod%2Fiseehosting%2Fmedia%2F4d1a61b3-892c-4201-af31-6f4e108c4511.jpg" />
</object>

The video files display OK in IE8 and IE9 as well as Chrome on PC's and Safari and Chrome on Macs. I cannot see why this would not display on Firefox in either Mac or PC format.

Kind regards Ian Johnson

I have the following code on a webpage to display a video file stored in an external location <pre><nowiki><object width="480" height="350"> <param name="movie" value="http://flvnetwork.com/assets/YTPlayer.swf" /> <param name="allowFullScreen" value="true" /> <param name="allowscriptaccess" value="always" /> <param name="flashvars" value="autostart=false&amp;frontcolor=lightblue&amp;backcolor=black&amp;file=http://flvnetwork.com/vod/iseehosting/media/lifejackets.flv&amp;image=http%3A%2F%2Fflvnetwork.com%2Fvod%2Fiseehosting%2Fmedia%2F4d1a61b3-892c-4201-af31-6f4e108c4511.jpg" /> </object> </nowiki></pre> The video files display OK in IE8 and IE9 as well as Chrome on PC's and Safari and Chrome on Macs. I cannot see why this would not display on Firefox in either Mac or PC format. Kind regards Ian Johnson

השתנתה ב־ על־ידי cor-el

פתרון נבחר

For Firefox you need to specify the file name in a data attribute in the object tag.

<object width="480" height="350" data="http://flvnetwork.com/assets/YTPlayer.swf">
<param name="movie" value="http://flvnetwork.com/assets/YTPlayer.swf" />
<param name="allowFullScreen" value="true" />
<param name="allowscriptaccess" value="always" />
<param name="flashvars" value="autostart=false&amp;frontcolor=lightblue&amp;backcolor=black&amp;file=http://flvnetwork.com/vod/iseehosting/media/lifejackets.flv&amp;image=http%3A%2F%2Fflvnetwork.com%2Fvod%2Fiseehosting%2Fmedia%2F4d1a61b3-892c-4201-af31-6f4e108c4511.jpg" />
</object>
Read this answer in context 👍 0

כל התגובות (1)

more options

פתרון נבחר

For Firefox you need to specify the file name in a data attribute in the object tag.

<object width="480" height="350" data="http://flvnetwork.com/assets/YTPlayer.swf">
<param name="movie" value="http://flvnetwork.com/assets/YTPlayer.swf" />
<param name="allowFullScreen" value="true" />
<param name="allowscriptaccess" value="always" />
<param name="flashvars" value="autostart=false&amp;frontcolor=lightblue&amp;backcolor=black&amp;file=http://flvnetwork.com/vod/iseehosting/media/lifejackets.flv&amp;image=http%3A%2F%2Fflvnetwork.com%2Fvod%2Fiseehosting%2Fmedia%2F4d1a61b3-892c-4201-af31-6f4e108c4511.jpg" />
</object>