FMUSER Wirless Transmit Video And Audio More Easier !
es.fmuser.org
it.fmuser.org
fr.fmuser.org
de.fmuser.org
af.fmuser.org ->Afrikaans
sq.fmuser.org ->Albanian
ar.fmuser.org ->Arabic
hy.fmuser.org ->Armenian
az.fmuser.org ->Azerbaijani
eu.fmuser.org ->Basque
be.fmuser.org ->Belarusian
bg.fmuser.org ->Bulgarian
ca.fmuser.org ->Catalan
zh-CN.fmuser.org ->Chinese (Simplified)
zh-TW.fmuser.org ->Chinese (Traditional)
hr.fmuser.org ->Croatian
cs.fmuser.org ->Czech
da.fmuser.org ->Danish
nl.fmuser.org ->Dutch
et.fmuser.org ->Estonian
tl.fmuser.org ->Filipino
fi.fmuser.org ->Finnish
fr.fmuser.org ->French
gl.fmuser.org ->Galician
ka.fmuser.org ->Georgian
de.fmuser.org ->German
el.fmuser.org ->Greek
ht.fmuser.org ->Haitian Creole
iw.fmuser.org ->Hebrew
hi.fmuser.org ->Hindi
hu.fmuser.org ->Hungarian
is.fmuser.org ->Icelandic
id.fmuser.org ->Indonesian
ga.fmuser.org ->Irish
it.fmuser.org ->Italian
ja.fmuser.org ->Japanese
ko.fmuser.org ->Korean
lv.fmuser.org ->Latvian
lt.fmuser.org ->Lithuanian
mk.fmuser.org ->Macedonian
ms.fmuser.org ->Malay
mt.fmuser.org ->Maltese
no.fmuser.org ->Norwegian
fa.fmuser.org ->Persian
pl.fmuser.org ->Polish
pt.fmuser.org ->Portuguese
ro.fmuser.org ->Romanian
ru.fmuser.org ->Russian
sr.fmuser.org ->Serbian
sk.fmuser.org ->Slovak
sl.fmuser.org ->Slovenian
es.fmuser.org ->Spanish
sw.fmuser.org ->Swahili
sv.fmuser.org ->Swedish
th.fmuser.org ->Thai
tr.fmuser.org ->Turkish
uk.fmuser.org ->Ukrainian
ur.fmuser.org ->Urdu
vi.fmuser.org ->Vietnamese
cy.fmuser.org ->Welsh
yi.fmuser.org ->Yiddish
Use HTML5 to play videos. The most popular video format is MP4, which is supported by all the latest browsers;
MP4 MPEG 4 file with H.264 video encoding and AAC audio encoding;
I have done a program to convert videos in other encoding formats to MP4. The quality of the conversion can be controlled. The worse the quality, the smaller the video. So you can convert a few gigabytes of video into dozens of megabytes of MP4, which is convenient for playback. Go to the Internet to watch with HTML5.
The program simply wraps the call process to the open source encoder, and specifically uses the following encoders and class libraries:
x264 => video encoder
faac => audio encoder
MP4Box => Mix video and audio into one
AvisynthWrapper.dll => AVI script interpreter (need to install Avisynth program)
The above encoder only supports some video formats, such as wmv, flv; unsupported videos need to use the ffmpeg encoder, which supports most video formats, such as rm, rmvb, mp4;
Combine them to encode most video formats;
There are a lot of detailed functions and related parameters on the Internet, so I won’t repeat them here; (I really admire the unselfish contribution spirit of some foreigners. Such complicated and practical programs are open sourced for use by all human beings. It is said that certain domestic Storm, Koukou Audio and Video all use a lot of open source video encoders, but they are not open source, despise them)
The program has been open sourced to GitHub
Directory of source solution:
Pay attention to change the target platform of the MP4EncoderTester project to x86 when compiling, otherwise a platform error will occur when calling the methods of the AvisynthWrapper.dll class library;
In the directory where the program is run (the bin/Debug/ directory of the MP4EncoderTester project already contains the following files, or you can download them from the relevant official website), include the files in the box below,
Avisynth_258.exe needs to be installed first to interpret the avs script file for video processing;
Note when testing: In the Main method of the Program.cs file of the MP4EncoderTester project, the input and output variables are changed to the corresponding video path under your own system:
static void Main(string[] args) {
string input = @"C:\Users\Canie\Desktop\testVideo\orig\orig.wmv";
string output = @"C:\Users\Canie\Desktop\testVideo\encoded\encoded.mp4";
EncoderHelper encoderHelper = new EncoderHelper(input, output);
encoderHelper.Encode();
}
The program refers to the powerful video encoder: MeGUI
If you want to learn video encoding, it is recommended to look at the source code of MeGUI directly, and this program of mine is just for automatic timing conversion of the video in the specified folder in the background, so there is no interface, the function is relatively simple, and it is simply encoded into MP4 format;
The source code lacks detailed documentation, so if you are in a mood, you can slowly improve it;v
|
Enter email to get a surprise
es.fmuser.org
it.fmuser.org
fr.fmuser.org
de.fmuser.org
af.fmuser.org ->Afrikaans
sq.fmuser.org ->Albanian
ar.fmuser.org ->Arabic
hy.fmuser.org ->Armenian
az.fmuser.org ->Azerbaijani
eu.fmuser.org ->Basque
be.fmuser.org ->Belarusian
bg.fmuser.org ->Bulgarian
ca.fmuser.org ->Catalan
zh-CN.fmuser.org ->Chinese (Simplified)
zh-TW.fmuser.org ->Chinese (Traditional)
hr.fmuser.org ->Croatian
cs.fmuser.org ->Czech
da.fmuser.org ->Danish
nl.fmuser.org ->Dutch
et.fmuser.org ->Estonian
tl.fmuser.org ->Filipino
fi.fmuser.org ->Finnish
fr.fmuser.org ->French
gl.fmuser.org ->Galician
ka.fmuser.org ->Georgian
de.fmuser.org ->German
el.fmuser.org ->Greek
ht.fmuser.org ->Haitian Creole
iw.fmuser.org ->Hebrew
hi.fmuser.org ->Hindi
hu.fmuser.org ->Hungarian
is.fmuser.org ->Icelandic
id.fmuser.org ->Indonesian
ga.fmuser.org ->Irish
it.fmuser.org ->Italian
ja.fmuser.org ->Japanese
ko.fmuser.org ->Korean
lv.fmuser.org ->Latvian
lt.fmuser.org ->Lithuanian
mk.fmuser.org ->Macedonian
ms.fmuser.org ->Malay
mt.fmuser.org ->Maltese
no.fmuser.org ->Norwegian
fa.fmuser.org ->Persian
pl.fmuser.org ->Polish
pt.fmuser.org ->Portuguese
ro.fmuser.org ->Romanian
ru.fmuser.org ->Russian
sr.fmuser.org ->Serbian
sk.fmuser.org ->Slovak
sl.fmuser.org ->Slovenian
es.fmuser.org ->Spanish
sw.fmuser.org ->Swahili
sv.fmuser.org ->Swedish
th.fmuser.org ->Thai
tr.fmuser.org ->Turkish
uk.fmuser.org ->Ukrainian
ur.fmuser.org ->Urdu
vi.fmuser.org ->Vietnamese
cy.fmuser.org ->Welsh
yi.fmuser.org ->Yiddish
FMUSER Wirless Transmit Video And Audio More Easier !
Contact
Address:
No.305 Room HuiLan Building No.273 Huanpu Road Guangzhou China 510620
Categories
Newsletter