Questions tagged [avi]

This tag is for questions about playback of, creation of, and programmatic interaction with, Audio Video Interleave (*.avi) files. The AVI format was introduced by Microsoft in 1992 and has been widely adopted and modified since, but remains mostly supported on Microsoft devices

The AVI - "Audio Video Interleave" - format was introduced by Microsoft in 1992 and has been widely adopted and modified since, notably with the widely-used file format extensions developed by the Matrox OpenDML group in February 1996.

AVI files can contain both audio and video data in a file container that allows synchronous audio-with-video playback.AVI is a derivative of the Resource Interchange File Format (RIFF), which divides a file's data into blocks, or "chunks." Each "chunk" is identified by a FourCC tag. An AVI file takes the form of a single chunk in a RIFF formatted file, which is then subdivided into two mandatory "chunks" and one optional "chunk". By way of the RIFF format, the audio-visual data contained in the "movi" chunk can be encoded or decoded by software called a codec, which is an abbreviation for (en)coder/decoder. Upon creation of the file, the codec translates between raw data and the (compressed) data format used inside the chunk. An AVI file may carry audio/visual data inside the chunks in virtually any compression scheme, including Full Frame (Uncompressed), Intel Real Time (Indeo), Cinepak, Motion JPEG, Editable MPEG, VDOWave, ClearVideo / RealVideo, QPEG, and MPEG-4 Video.

Since AVI's introduction in the 1990s, evolving requirements for computerized video files have resulted in many situations that the original AVI spec did not anticipate, and a variety of responses have come forward. As a result, AVI-based videos have fallen victim to some format fragmentation, although there are widely-available codecs and other software (e.g. VLC Player) which can play all major types of video files.

526 questions
-1
votes
2 answers

golang storing map to variable and do asserts

I am trying to use Avi Go SDK to fetch a gslb configuration. First initilizing a connection to the controller as below, aviClient, err := clients.NewAviClient("mycontroller", "USER", session.SetPassword("PASSS"), …
Simon
  • 111
  • 1
  • 9
-1
votes
1 answer

Failed to convert DAV files to AVI using FFMPEG

I need to convert DAV files (files generated from security camera recorders) to AVI. I have a script that works, but it does not convert multiple files, and the files are not corrupted. I use the following code: for %% A IN (* .dav) DO ffmpeg -i "%%…
AUDICOM
  • 3
  • 4
-1
votes
1 answer

Matlab code for converting collection of tiffs to avi isn't working

I want to convert 95 tiffs to an avi. this is the code I'm using: v = VideoWriter('newfile.avi','Uncompressed AVI'); open(v); %95 images for k=1:95 yr=2005; icnt=yr+1; frame = sprintf('scale%dRCP2.6.tif', icnt); input =…
matlabcat
  • 172
  • 2
  • 12
-1
votes
1 answer

Fill out video file attributes

I have a large collection of video files, which have missing atributes like length, resolution, bitrate etc. I would like to fill those out somehow but im not sure what solution to use. It would take ages by hand but i'd rather see if a program can…
-1
votes
1 answer

Best way to "universally embed" and avi video inside and html page

I have a video.avi file and and html page on a server, and I would like to "embed universally" my video inside the html so that people could see it. By universally I mean in a way where I would be the less dependent on browsers/video viewers the…
Olórin
  • 3,367
  • 2
  • 22
  • 42
-1
votes
1 answer

AVI/MP4 on videoview

I am trying to run a avi/mp4 video on the videoview in my app, but when the app open appears "can't play this video", i am testing on my mobile. videoView = (VideoView)findViewById(R.id.videoView); MediaController mediaController = new…
Matheus Weber
  • 194
  • 2
  • 3
  • 14
-1
votes
1 answer

OPENCV Able to open the *avi, But unable to read frames from it

I want to open a *.avi file and read its frames . But it didn't work . I think it's because myopencv don't support this kind of avi file. What can I do to make it capable? VideoCapture capture("part.avi"); if(!capture.isOpened()){ cout<<"failed…
-1
votes
1 answer

How to hide sdl screen in sdl version 1.2.5?

I have made a movie player using ffmpeg and sdl 1.2.5 in MFC to play avi. When I send video-image to my mfc-viewer insted of sending them to sdl screen, every play is OK, but when I play avi, sdl screen is popup which is not how it should do it. Is…
n2v2rda2
  • 327
  • 2
  • 5
  • 15
-1
votes
1 answer

FFMPEG API to generate AVI file containg multiple video clips

I am going to make an AVI file that includes multiple video clips and related information. For example, a vehicular black box with two camera channels (rear cam and front cam) needs to include the two video clips and an accelerator sensor value into…
-1
votes
1 answer

how to compress the uncompressed avi by ffmpeg or DirectShow.net

I have a uncompressed avi file and i want to compress it by program . how to compress the uncompressed avi by ffmpeg or DirectShow.net ? Thanks!
-1
votes
1 answer

What is FFMPEG? How can I use it for fomat conversion?

How can I use it to convert yuv files to avi files? And back. I am currenlty working on a project that needs to process a yuv video into matlab. I only know how to load an avi file by using mmreader. Is there any other way to read yuv files in…
mc8
  • 315
  • 7
  • 21
-2
votes
1 answer

Suggest some good Lightbox jquery which supports .avi file

Can any one suggest me a lightbox jquery which supports .avi file??
-2
votes
0 answers

how to add only Frame rate mode using FFMPEG for an AVI file

For one of our 3rd party tool to work we need our AVI files should contain the Frame rate mode : Variable Using FFMPEG is it possible to add this tag in the video section? Tried different commands like ffmpeg -i Input.avi -r…
-2
votes
2 answers

I need the python script to select all AVI files

The idea is the following, the script needs to recognize all DAV files recursively in the folder, and apply the conversion to JPEG of 5 seconds using OPENCV. So far everything working. However the script is listing the AVI files but converts only 1…
audicom
  • 3
  • 1
-2
votes
1 answer

How to create an avi file from scratch?

My task is to create an avi file by saving n number of frames in c++ . There are many inbuilt function which can be used to create .avi file as given in below link…
Zaid
  • 31
  • 5
1 2 3
35
36