|
-
May 1st, 2005, 02:57 AM
#1
Thread Starter
Fanatic Member
Extraction
I want to extract sound from avi file and then save into .wav file.
Bundle of thx in advance.
-
May 1st, 2005, 03:38 AM
#2
-
May 1st, 2005, 11:20 AM
#3
Thread Starter
Fanatic Member
Re: Extraction
hmm thx pengate
but
I didn't understand it
So kindly if possible give me information about how to do it ....
-
May 1st, 2005, 03:32 PM
#4
Thread Starter
Fanatic Member
Re: Extraction
No reply from so long ...
i m sad
-
May 1st, 2005, 05:17 PM
#5
Re: Extraction
Have you tried www.planet-source-code.com/vb
In the quick search located about, type in this [avi wav] without the brackets. There should be some code for extracting wavs from that.
-
May 2nd, 2005, 03:12 AM
#6
Thread Starter
Fanatic Member
Re: Extraction
Sorry Jacob ..
I have viewed all 6 pages and 52 items.
but Not a single sample is present there ...
I just want to extract audio from avi file and then save into wav file..
-
May 2nd, 2005, 05:43 AM
#7
Frenzied Member
Re: Extraction
After a bit of searching... i found ths activex dll.. register it, reference it... and then use the following code..
VB Code:
aReader.Open "c:\tsunami1.avi"
aReader.ExtractWav "c:\check.wav"
-
May 2nd, 2005, 09:26 AM
#8
Thread Starter
Fanatic Member
Re: Extraction
thx MoinKhan
but i wanna some code snippets..
Can any one sort it out in Code...
-
May 2nd, 2005, 09:38 AM
#9
Re: Extraction
 Originally Posted by vbPoet
thx MoinKhan
but i wanna some code snippets..
Can any one sort it out in Code...
Isn't that what moinkhan just posted? Or is that not code?
-
May 2nd, 2005, 10:18 AM
#10
Thread Starter
Fanatic Member
Re: Extraction
It is not code.
i need some code snippet ....
-
May 2nd, 2005, 10:24 AM
#11
Re: Extraction
vbPoet:
He gave you a snippet, but to use the snippet you need to register the DLL he attached. Sadly, this isn't something that seems possible in VB, and if it is, I doubt anyone here has a 3000+ line module in their backups which does exactly what you say. The best thing to do is search Google, Planet Source Code or here on the forums..
Phreak
Visual Studio 6, Visual Studio.NET 2005, MASM
-
May 2nd, 2005, 10:30 AM
#12
Re: Extraction
If all you are stuck on is registering it then use this
Start->Run
and type in "regsvr32 [path]\[dllname].dll".
-
May 2nd, 2005, 10:52 AM
#13
Thread Starter
Fanatic Member
Re: Extraction
nops penagate i m not stuck at registering this DLL..
I m trying to understand phreAk ..
U mean
what i m asking
to extract audio from avi file ... is very big task and it may contain 3000+ lines of code.
so nice way is to use Dll ....>>>??????
-
May 2nd, 2005, 10:57 AM
#14
Re: Extraction
Well yes it does simplify things a bit. I guess what phReAk meant is you can't register DLLs in VB, and extracting is a complicated task, which this DLL makes easier. I guess it is an ActiveX DLL which means you can view it in the Object Browser (F2) and see all its classes, properties and methods, and kind of guess how it works
-
May 2nd, 2005, 11:05 AM
#15
Thread Starter
Fanatic Member
Re: Extraction
But what if i do not want to use this DLL but to get some Vb6 code ...
-
May 6th, 2005, 06:15 PM
#16
Thread Starter
Fanatic Member
Re: Extraction
 Originally Posted by vbPoet
But what if i do not want to use this DLL but to get some Vb6 code ...
Yup i wanna source code of doing this extraction not DLL ..
-
May 7th, 2005, 12:51 AM
#17
Re: Extraction
Here ya go mate
http://www.shrinkwrapvb.com/avihelp/avihelp.htm
A tutorial on working with AVI files using the AVI APIs, through Visual Basic 5/6.
It has downloadable source code also
-
May 7th, 2005, 04:16 AM
#18
Thread Starter
Fanatic Member
Re: Extraction
 Originally Posted by penagate
hmm Pengate
I have read it .. but it is all about AVI 2 BMP and BMP 2 AVI..
but not related to Extraction of audio from AVI file ....
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|