I had the same problem and was assured that the demo version only will cause such errors.
TD
Printable View
I had the same problem and was assured that the demo version only will cause such errors.
TD
You gotta love Macromedia...
XN put up an online pay system and I'll buy your product or use pay pal and I'll buy it.
Also I wrote a nice review for your product at http://www.koolmovers.com - I'm going to seperate it from the Flix review later this week.
TygaStyle, JAEzell, TPhilipDolce, johnie
Hi old friends.
The crash is definitely a protection I added to the trial version. I am certain that it will not happen if you buy the software (you can ask people that did).
In the trial version there are two restrictions:
1. There is a green watermark on the corner of each frame.
2. You will not be able to import the output SWF file into flash studio.
Xn
Mail: [email protected]
Site: http://www.geocities.com/vid2swf
Discuss: http://groups.yahoo.com/group/vid2swf
Pretty sneaky little trick...but I like it ;-).
--Jesse
johnie,
I couldn't find the review you mentioned before. Could you please send me the full address?
Thanks,
Xn
http://www.koolmovers.com/reviews.ph...owcontent&id=5
This is where the review is. Your new beta (5) is pretty nice...
It has problems with inserting sound from QT 4 and 5 though.
Since I own QT Pro its not a problem- I simply converted from MOV to AVI and it worked fine.
Johnie,
Thanks for the link and the good review.
Xn
Quote:
Originally posted by xnxnxn
Johnie,
Thanks for the link and the good review.
Xn
Hello, I just downloaded your tool today and I have
to tell you this is excellent, exactly what I needed.
I am in the process of building a new business, an online
service and I will also need to be able to run these
compressions in batch mode. I heard that you had that
option avail, but did not see anything about it with
the version I downloaded, infact it is the most important
feature to me. Also, I have a business question/proposal
for you. I'f you could email me, I'd like to mention
more about it in a more appropriate forum.
Thanks very much!!
Mary O'Toole
[email protected]
I'm sending you the email right now.
Xn
They can't delete this post. Only a senior mod or David Michie can delete this and I don't see that happening.
I have had some deleted also.
Some boards aren't as friendly as others...
hey flashers, (moderators?? johny??)ironicly, this is the first time ive been in this part of the flashkit community, but i just wanted to ask where i can find a senior mod because i want to change my name where it says:
MoMad
Senior Member
to...
MoMad
Senior NoMad :)
also, i wanna be a mod somewhere... hehe. But if thats too much, ill understand ok.
[Edited by MoMad on 04-06-2001 at 04:23 PM]
by the way: xn that is a great app!! see, it helps to browse around once in a while or i would've missed this app!! (which is the first of its kind)!!
I have a great idea for this type of program, you can put the trial version of it in http://www.download.com/ and someother places, and you will get loads and loads of hits, maybe even loads of proffit... also, dont forget about the documentation, if the average flasher can't use it, then they wouldnt have a use for it, so take documentation and examples as serious as the production because it is a big part of the production. GREAT!! hey, you are also working on a swf to avi?? when will it be ready?
that is great man keep it up.
one last thing, you have got to move out of Geo*****ies.com!!
there is a line in their terms and agreements, that they will own rights to anything you upload to their servers!! so move outta there and start up a new website on http://www.tripod.com/ or http://www.virtualave.net/ or anywhere that doesnt try to take over your hard-earned hard-work!!!!
Peace!! and good luck. (psst... ill tell ppl about your product)
MoMad, the administrators are the ones to change your name Trav (Font Master Flex), Steve (Scills), or Mark (Flash Kit). Ask Travis to do it and he might. Typically they won't change your name until after 500 posts.
As for being a moderator, basically you don't ask to be a moderator the current moderators of the boards ask you to be a moderator. Basically what you need to do is go to a board and start answering as many questions and in general be as helpful as you can be while maintaing a good attitude.
lol. that sounds like too much work, but ill go for the name change. :) thanks johny!
I could really use a linux version of vid2flash. I imagine
this windows version is written in C++, so I wouldnt
expect a port would be too difficult, but..
This would be a major help!!
Thanks for your replies.
How the heck does this keep becoming the topmost thread on the board...is someone posting to make it the top thread and then deleting their post???
--Jesse
Well actually takes about 20 lines of code and no more than 5 minutes to write a program that can convert swf to avi or any other format.Quote:
Originally posted by gjkillam
Hey Xn, Johnie & Tphilip
On the .swf to .avi idea ...Do it Do it! Do it!
I have already spoke with Xn on the subject!
You said it would take a couple months? I was just wondering if its in the workz?
Cheers,
Lev
Jesse - people just keep replying to this thread. Maybe they're interested in this. :)
Leviathan - So why don't you write it? Let's split it between us 10 lines each.
Xn
Hi XN,Quote:
Originally posted by xnxnxn
Leviathan - So why don't you write it? Let's split it between us 10 lines each.
Xn
well actually I did it a while ago, even if with initialization, finalization and some error checking code, it takes more than 20 lines, actually 77, white lines included. It's written in Delphi and you just need to import the ActiveX of the Flash player to compile it. It doesn't compress to AVI but saves the entire movie as a serie of progressively numbered bitmaps, one for each frame of the Flash movie. By just adding the Jpeg unit and other 5 lines of code it can compress bitmaps to Jpeg instead of plain BMP. There's plenty of free utilities that can assemble the bitmaps into an AVI, otherwise, I'm sure that you know that by adding support for DirectShow (part of DirectX) it is possible to assemble the bitmaps directly into AVI, MPEG, ASF and other formats, or even add a sound track, all this in further 30 lines of code.
SwfConvert compiles to a command line application and it accepts two parameters: the first is the name of SWF to be converted and the second one is a directory name where the bitmaps have to be saved. Both names have to be fully qualified (have to include drive and path)
I.e: swfconvert c:\movie.swf d:\frames\
Not too bad, isn't it? I guess that now you will be more relaxed and even more ironic, knowing that you can spend all the time of the incoming summer at the beach, instead of spending two months making a SWF converter.
Cheers,
Lev
P.S. If you don't have Delphi, you may load the application already compiled at
http://www.barefootsoft.com/files/SwfConvert.zip
program SwfConvert;
{$APPTYPE CONSOLE}
uses
Windows, SysUtils, Controls, Messages, Forms, ActiveX, Graphics,
ShockwaveFlashObjects_TLB;
type
TMovieContainer = class
FPhWnd : HWND;
FlashPlayer : TShockwaveFlash;
procedure WndProc(var Message : TMessage);
end;
var
MC : TMovieContainer;
Bmp : TBitmap;
BmpWidth, BmpHeight, NumFrames, Idx : integer;
DestDir, BmpName : string;
procedure TMovieContainer.WndProc(var Message : TMessage);
begin
with message do
Result := DefWindowProc(FPhWnd, Msg, wParam, lParam);
end;
begin
CoInitialize(nil);
MC := TMovieContainer.Create;
MC.FPhWnd := AllocateHWnd(MC.WndProc);
if ParamCount < 2 then exit;
DestDir := ParamStr(2);
//Created and instance of player without showing it
MC.FlashPlayer := TShockwaveFlash.CreateParented(MC.FPhWnd);
with MC.FlashPlayer do
begin
Playing := False;
Movie := ParamStr(1);
//Width and Height need to be set anyway
Width := 400;
Height := 400;
BmpWidth := Width;
BmpHeight := Height;
NumFrames := TotalFrames;
end;
Bmp := TBitmap.Create;
with Bmp do
begin
PixelFormat := pf24Bit;
Width := BmpWidth;
Height := BmpHeight;
end;
for Idx := 1 to NumFrames do
begin
MC.FlashPlayer.PaintTo(Bmp.Canvas.Handle, 0, 0);
BmpName := DestDir + IntToStr(Idx) + '.bmp';
Bmp.SaveToFile(BmpName);
MC.FlashPlayer.Forward;
end;
//Free Allocate resources
CoUninitialize;
Bmp.Free;
DeAllocateHWnd(MC.FPhWnd);
MC.FlashPlayer.Free;
MC.Free;
end.
Yah, but every couple weeks it jumps to the top and, all excited about some new features being added or something, I go to check it and no posts are added...kind of spooky ;-).
In any case, thanks for the APP, it is a nice little util.
--Jesse
Leviathan
I tried to run your program but got a major error. Some kind of loop which required me to ctrl-alt-delete out of it.
I ran it from my desktop using the following command.
C:\WINDOWS\Desktop\SwfConvert\SwfConvert.exe C:\WINDOWS\Desktop\SwfConvert\test.swf C:\WINDOWS\Desktop\SwfConvert\
I got the images into the directory but then the loop started.
Also, does this only work for .swf or can you do this for .avi, mov, asf etc...?
[Edited by Javakitty on 05-09-2001 at 01:53 AM]
Quote:
Originally posted by Javakitty
Leviathan
I tried to run your program but got a major error. Some kind of loop which required me to ctrl-alt-delete out of it.
......
I got the images into the directory but then the loop started.
Sorry, at he last minute I've sent an old version of it which wans't releasing properly the resources allocated. I've uploaded the new one at the same address above.
Not with this one, but have a look at the Microsoft DirectX site http://www.microsoft.com/directx/ and download the SDK version of DirectX 8.0 (if you have any version after 6, it should work as well). Read the stuff about DirectShow and play with utilities like GraphEdit. It's quite difficult to grasp and master in the beginning, but I've found it extremely powerfull. You can then extract single frames and whole audio from all the supported media types and process them as you wish. QuickTime movies are supported only until version 2, for all the others (3, 4 and 5) you need separate API calls from Apple SDK.Quote:
Also, does this only work for .swf or can you do this for .avi, mov, asf etc...?
Cheers,
Lev
I noticed that too. Its freaky- The thread is haunted.Quote:
Originally posted by JAEzell
Yah, but every couple weeks it jumps to the top and, all excited about some new features being added or something, I go to check it and no posts are added...kind of spooky ;-).
In any case, thanks for the APP, it is a nice little util.
--Jesse
Levithan- Thanks for the code... Its nice that you are sharing.
You can convert the movie to gif first then import the gif.
A avi to gif convert is free of charge.
http://www.tucows.com
Lev,
It didn't work for me either.
Xn
Xn, You stay up too late (or get up too early)...
;-)
--Jesse
Quote:
Originally posted by xnxnxn
Lev,
It didn't work for me either.
Xn
The first version I posted wasn't working, so I've uploaded anorther one the next day, and that works.
Cheers,
Lev
Does this seemingly awesome application convert my .mov into .swf as sequential images so I can control it over the timeline?
No, it is for getting frames of SWF file as sequential images, but it could be modified for quicktime, etc. with some additional libraries (read comments above).
--Jesse
So one can't control the video in an Fla? i.e. add type over it and build buttons to move forward/back?Quote:
Originally posted by JAEzell
No, it is for getting frames of SWF file as sequential images, but it could be modified for quicktime, etc. with some additional libraries (read comments above).
--Jesse
Once you have the video converted to SWF then you should be able to import it into Flash and finish up from there (You loose your sound). I also want to point out that there is another method of doing this and it uses an active X container that holds the Movie so that you don't have to convert ( http://www.Flashants.com ) at all as long as the MOV format is under QT3 or under (Media player cannot play MOV V3 or higher because apple semi-closed the format when MS added MOV playback and creation to Media Player. They did this to stop Microsoft from doing what they did to Netscape to them with Quicktime).
Depending on what you are doing you might consider this approach if the converted movie is larger than the original or the quality is not acceptable. QT's MOV, Mpeg, AVI, ETC are optimized for Bitmap streaming where as Flash is not. Some times you will find that the video format will work better than Flash (Becuase they were designed for the Raster Images where as Flash isn't) especially when you are working with the MOV format (Also note that the QT plug-in has about the same distribution as the Shokwave Player) which actually can support Flash, Java, Applescripts, QT Vector format, QT Cubic V-R Format, and over 200 different Media types. Flash doesn't like QT 5, Vid 2 SWF seems to not like QT 5 much either but will convert it.
Thanks for that Johnie.
However, I did buy vid2swf (and then found out that JavaKitty has a more visually appealing version with a nice interface, bummer). Anyway, I am please to see that once the file is imported into Flash, all the images in the sequence are placed on the time line (much like swish, swift et al). This is great. I've experimented with importing the file into an MC and applying actions to it. Good stuff. And as far as quality goes... well the quality can never be better than the quality of the original footage. I have the Kodak MC3 which shoots at 320x240 (perfect for streaming video) with acceptable (nowhere close to great) quality. So, no regrets buying this little 'gem' of a program. But I am saving up to buy Adobe After Effects 5 (swf export <---- CAN'T WAIT).
I've been told that Vid2SWF and Vid2Flash are the same program. Java Kitty has told me that at least. If you contact them they may let you have the new interface, although I prefer the old Vid2SWF interface. It takes all of the images and places them in a timeline then adds sound to it.
As far as converting Video- Vid2Flash does a great job. So for Mpeg and AVI and MOV 3 and lower it is great. It however doesn't handle Flash Tracks, Wired Sprites, Qubic VR, Java, Applescripts, and the other more attractive features of MOV format 4 and 5. The truth is that MOV 5 format is actually closer to Shockwave format than a video format. Then on the other hand none of the other conversion programs handles those things either.
i have an alpha test version of an application at the moment that does conversions to the SWF file format. you can test it out if you want and tell me what you think.
Using the thread for promotion huh?
Xn
Absolute quality mate!
Do I need to but it then to get rid of the vid2flash from the swf?