Warning

 

Close

Confirm Action

Are you sure you wish to do this?

Confirm Cancel
BCM
User Panel

Site Notices
Posted: 6/1/2010 6:00:20 PM EDT
My wife is attempting to upload a video to a website she is working on for a client.  She has never done a website with video before and has hit a snag.






The video she is wanting to upload is actually several videos all in one file that has links to the other video sections right there with it.  She has created this in Flash but cant get her coding right.







Does she need to host this multi-video file?


What is she doing wrong?







Here is some of the code so far:














<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">


<head>


<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />


<title>player</title>


<script language="javascript">AC_FL_RunContent = 0;</script>


<script src="AC_RunActiveContent.js" language="javascript"></script>


</head>


<body bgcolor="#ffffff">


<!––url's used in the movie––>


<!––text used in the movie––>


<!–– saved from url=(0013)about:internet ––>


<script language="javascript">


if (AC_FL_RunContent == 0) {


alert("This page requires AC_RunActiveContent.js.");


} else {


AC_FL_RunContent(


'codebase', 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0',


'width', '1680',


'height', '1050',


'src', 'player',


'quality', 'high',


'pluginspage', 'http://www.macromedia.com/go/getflashplayer',


'align', 'middle',


'play', 'true',


'loop', 'true',


'scale', 'showall',


'wmode', 'window',


'devicefont', 'false',


'id', 'player',


'bgcolor', '#ffffff',


'name', 'player',


'menu', 'true',


'allowFullScreen', 'false',


'allowScriptAccess','sameDomain',


'movie', 'player',


'salign', ''


); //end AC code


}


</script>


<noscript>


<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0" width="1680" height="1050" id="player" align="middle">


<param name="allowScriptAccess" value="sameDomain" />


<param name="allowFullScreen" value="false" />


<param name="movie" value="player.swf" /><param name="quality" value="high" /><param name="bgcolor" value="#ffffff" /><embed src="player.swf" quality="high" bgcolor="#ffffff" width="1680" height="1050" name="player" align="middle" allowScriptAccess="sameDomain" allowFullScreen="false" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />


</object>


</noscript>


</body>


</html>












Pic of wife:




 
Link Posted: 6/1/2010 6:12:23 PM EDT
[#1]



Link Posted: 6/1/2010 6:25:26 PM EDT
[#2]
the video does need to be hosted on the web server to be accessible by the flash player, just like any other referenced file.





what format is the main video in?

does this video have built-in links to the other videos or is she building the video links/menu?
Link Posted: 6/1/2010 6:26:44 PM EDT
[#3]
It is a Flash video format.  The video has built in links.
Link Posted: 6/1/2010 6:29:53 PM EDT
[#4]
I wish I could help, but I can't.  Nice wife.  I'll help by bumping your thread.  How do you make a thread title bold?  
Link Posted: 6/1/2010 6:31:16 PM EDT
[#5]
She's cute!  Any help?
Link Posted: 6/1/2010 6:31:36 PM EDT
[#6]
Can you get to player.swf in the same directory as the HTML?  It is possible that you have a permission problem.
Link Posted: 6/1/2010 6:41:24 PM EDT
[#7]

you have a good looking wife but having a good looking wife won't fix the code



Link Posted: 6/1/2010 6:42:56 PM EDT
[#8]
yes


Link Posted: 6/1/2010 6:46:18 PM EDT
[#9]
try, http://download.cnet.com/KompoZer/3000-10247_4-10655200.html
Link Posted: 6/1/2010 6:46:34 PM EDT
[#10]
I'm no coder but I'll take a blind stab.



"embed src="player.swf""



I would put a more exact link to the file.
Link Posted: 6/1/2010 6:48:43 PM EDT
[#11]
#1) Download Windows movie maker
#2) Edit movie
#3) Upload movie using built in publishing from Windows Moviee maker to You Tube
Link Posted: 6/1/2010 6:59:31 PM EDT
[#12]
Quoted:
I wish I could help, but I can't.  Nice wife.  I'll help by bumping your thread.  How do you make a thread title bold?  


Same way you make any other text bold, except this time, its in the title line!!
Link Posted: 6/1/2010 7:08:37 PM EDT
[#13]




Quoted:

It is a Flash video format. The video has built in links.




is she using flash for anything other than embedding the video?



if not, then she is really doing something equal to embedding a youTube video into her own web page, and could technically get away with only using the <object>...</object> portion.



note the BLUE parts... they need to be the relative path to the FLV file she is trying to load. it should be the same value in all the instances, because it's just naming the file multiple times for use by different browsers. if she uploads them to the same folder that this HTML file is in, then you just need the filename of the FLV file.




<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>player</title>
<script language="javascript">AC_FL_RunContent = 0;</script>
<script src="AC_RunActiveContent.js" language="javascript"></script>
</head>
<body bgcolor="#ffffff">
<!––url's used in the movie––>
<!––text used in the movie––>
<!–– saved from url=(0013)about:internet ––>
<script language="javascript">
if (AC_FL_RunContent == 0) {
alert("This page requires AC_RunActiveContent.js.");
} else {
AC_FL_RunContent(
'codebase', 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0',
'width', '1680',
'height', '1050',
'src', 'player',
'quality', 'high',
'pluginspage', 'http://www.macromedia.com/go/getflashplayer',
'align', 'middle',
'play', 'true',
'loop', 'true',
'scale', 'showall',
'wmode', 'window',
'devicefont', 'false',
'id', 'player',
'bgcolor', '#ffffff',
'name', 'player',
'menu', 'true',
'allowFullScreen', 'false',
'allowScriptAccess','sameDomain',
'movie', 'PATH TO FLV FILE',
'salign', ''
); //end AC code
}
</script>
<noscript>
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0" width="1680" height="1050" id="player" align="middle">
<param name="allowScriptAccess" value="sameDomain" />
<param name="allowFullScreen" value="false" />
<param name="movie" value="PATH TO FLV FILE" />
<param name="quality" value="high" />
<param name="bgcolor" value="#ffffff" />
<embed src="PATH TO FLV FILE" quality="high" bgcolor="#ffffff" width="1680" height="1050" name="player" align="middle" allowScriptAccess="sameDomain" allowFullScreen="false" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />
</object>
</noscript>
</body>
</html>
Link Posted: 6/1/2010 7:13:22 PM EDT
[#14]
Is there a specific reason she has to use flash?



Otherwise would it be possible to compile em to one big movie and upload to somewhere like vimeo?
Link Posted: 6/1/2010 7:13:39 PM EDT
[#15]
Quoted:

note the BLUE parts...


What he said.  The .flv file will have to be hosted somewhere, preferably on the same site.  
Link Posted: 6/1/2010 7:17:53 PM EDT
[#16]



Quoted:



Quoted:



note the BLUE parts...




What he said.  The .flv file will have to be hosted somewhere, preferably on the same site.  



Maybe things have changed recently, but aren't FLV files the creator files and swf the end user files?



 
Link Posted: 6/1/2010 7:20:58 PM EDT
[#17]
Quoted:

Quoted:
Quoted:

note the BLUE parts...


What he said.  The .flv file will have to be hosted somewhere, preferably on the same site.  

Maybe things have changed recently, but aren't FLV files the creator files and swf the end user files?
 


I'm no flash guru for sure, but as I understand it .flv and .swf can both contain flash video.  .flv is a container format if I understand it right.  I think you're thinking of .fla files, the author files.  
Link Posted: 6/1/2010 7:24:53 PM EDT
[#18]
The .flv is the actual video file. Unless you're using HTML5, you can't just link a video in HTML. You have to use some sort of player, be it Flash or WMV.
 



ETA: Read Through This: http://diveintohtml5.org/video.html
Link Posted: 6/1/2010 7:26:16 PM EDT
[#19]
no idea about what you posted.

but your wife unit is very attractive.  congrats to you sir.
Link Posted: 6/1/2010 9:32:45 PM EDT
[#20]
Given the loveliness of your damsal in distress, I deeply regret that I am clueless on that aspect of web stuff.

Find a site that does what you want and View the Source Code for the page - maybe?
Close Join Our Mail List to Stay Up To Date! Win a FREE Membership!

Sign up for the ARFCOM weekly newsletter and be entered to win a free ARFCOM membership. One new winner* is announced every week!

You will receive an email every Friday morning featuring the latest chatter from the hottest topics, breaking news surrounding legislation, as well as exclusive deals only available to ARFCOM email subscribers.


By signing up you agree to our User Agreement. *Must have a registered ARFCOM account to win.
Top Top