@Jim: I've used Dev, and had problems with sws_scale not working. No
idea why, but if you download the "shared" prebuilt libraries from
Zeranoe, you can use ffmpeg's DLL files with MSVC like so:
#include <Windows.h>
#include <libavformat/avformat.h>
#include <libavcodec/avcodec.h>//just as an example
int main()
{
const char * avfDLLpointer =
"F:\\Nav\\VisualStudio\\ffmpegTestProgram\\ffmpegTestProgram\\avformat-54.dll";//you
can place this DLL in the same directory as your exe
const char * avcDLLpointer =
"F:\\Nav\\VisualStudio\\ffmpegTestProgram\\ffmpegTestProgram\\avcodec-54.dll";.//just
as an example
HINSTANCE hinstLib_avformat = LoadLibrary(avfDLLpointer);
HINSTANCE hinstLib_avcodec = LoadLibrary(avcDLLpointer);//just as
an example
__av_dump_format av_dump_format_proc =
(__av_dump_format) GetProcAddress(hinstLib_avformat,
"av_dump_format");
av_register_all_proc();// Register all formats and codecs
}
Navin
On 11/25/2012 7:17 AM, Jim Morgenstern wrote:
A stupid, naïve question that has probably been answered before but I
would appreciate a reply:
I downloaded FFmpeg git-8b6aeb1 64-bit Dev (Latest)
<http://ffmpeg.zeranoe.com/builds/win64/dev/ffmpeg-20121120-git-8b6aeb1-win64-dev.7z>
from Zeranoe
I want to use FFmpeg on Win 7. Is there an install process ?
should I rename the dll s ?? [e.g. I have: libavcodec.dll.a ]
have I downloaded the wrong file ??
thanks
**
*Jim Morgenstern*
Image Mining LLC
248-252-2626
_______________________________________________
Libav-user mailing list
[email protected]
http://ffmpeg.org/mailman/listinfo/libav-user
_______________________________________________
Libav-user mailing list
[email protected]
http://ffmpeg.org/mailman/listinfo/libav-user