FFmpeg (Windows, Mac, Linux)
Shutter Encoder (Windows, Mac, Linux)
Free HD Video Converter Factory (Windows)
Mov ax,1234 mov bx,2345 add ax,bx mov @(some memory location ) say 2200,ax hlt
You can use Apple's Quick time player to watch "mov" format videos. You can download it for free from apple's website
The simple Assembly Programs: mov ax,15 mov bx,45 add ax,bx int 21 This is a simple Assembley programs that perform addition of two numbers like 15,45 in above example
3GP, 3G2, Arri raw, ASF, AVI, DV, FLV, F4V, GIF, M1V, M2T, M2TS, M4V, MOV, MP4, MPEG, MPE, MPG, M2V, MTS, MXF, R3D, SFW, VOB, WMV
You can go online and download WinX for free. This is a program for converting Quicktime to Windows Media Video. This program also allows you to make JPEG and BMP pictures from source video scene. This is a program that is fast and safe to use.
I haven't used windows movie maker before. I kind of knowing it doesn't support mov format as import content. So you'd better converting the format into the contents that supported by windows movie maker, and edit it. Or you may try MPEG Video Wizard DVD to edit you mov videos, it accepts mov format as import content as well as output content.
.STACK 100 .DATA CWR EQU 0FFC6 H PORTA EQU 0FFC0 H PORTB EQU 0FFC2 H PORTC EQU 0FFC4 H .CODE START: MOV AX,@DATA MOV DS,AX MOV AL,80H MOV DX,CWR OUT DX,AL MOV AL,F3H MOV DX,PORTC OUT DX,AL MOV AL,FFH MOV DX,PORTA OUT DX,AL MOV AL,FFH MOV DX,PORTB OUT DX,AL MOV CL,03H CALL DELAY TOP: MOV AL,EEH MOV DX,PORTA OUT DX,AL MOV AL,EEH MOV DX,PORTB OUT DX,AL MOV CL,02H CALL DELAY MOV AL,FCH MOV DX,PORTC OUT DX,AL MOV AL,7DH MOV DX,PORTA OUT DX,AL MOV AL,57H MOV DX,PORTB OUT DX,AL MOV CL,15H CALL DELAY MOV AL,E7H MOV DX,PORTB OUT DX,AL MOV AL,FDH MOV DX,PORTA OUT DX,AL MOV AL,EDH MOV DX,PORTA OUT DX,AL MOV CL,02H CALL DELAY MOV AL,F7H MOV DX,PORTB OUT DX,AL MOV AL,F0H MOV DX,PORTC OUT DX,AL MOV AL,F1H MOV DX,PORTA OUT DX,AL MOV CL,15H CALL DELAY MOV AL,FBH MOV DX,PORTA OUT DX,AL MOV AL,FBH MOV DX,PORTB OUT DX,AL MOV AL,50H MOV DX,PORTC OUT DX,AL MOV CL,15H CALL DELAY MOV AL,FEH MOV DX,PORTA OUT DX,AL MOV AL,FEH MOV DX,PORTB OUT DX,AL MOV CL,03H CALL DELAY MOV AL,FFH MOV DX,PORTA OUT DX,AL MOV AL,AFH MOV DX,PORTC OUT DX,AL MOV AL,EEH MOV DX,PORTA OUT DX,AL MOV AL,EEH MOV DX,PORTB OUT DX,AL MOV CL,02H CALL DELAY MOV AL,BFH MOV DX,PORTA OUT DX,AL MOV AL,BFH MOV DX,PORTB OUT DX,AL MOV CL,15H CALL DELAY JMP TOP DELAY: MOV BX,10H D1: MOV CX,0FFFFH D2: LOOP D2 DEC BX JNZ D1 INT 03H END START
The best video converter is just what you need. It can convert MOV to AVI and has user-friendly and easy to use interface! It has the free version. You can find it at the related link below.Also recommending this free video converter > Free AVI Video Converter.http://www.dvdvideosoft.com/products/dvd/Free-AVI-Video-Converter.htm
org 100h .data str1 db "Computer" str2 db "computer" mes1 db "string are same $" mes2 db "string are different $" .code assume cs:code,ds:data start: mov ax,@data mov ds,ax mov es,ax mov si,offset str1 mov di,offset str2 cld mov cx,8 repe cmpsb mov ah,9 jz skip lea dx,mes2 jmp over skip: lea dx,mes1 over: int 21h mov ax,4c00h int 21h end start ret
There are several video editors available commercially or for free from the Internet that can be used to edit MOV files. The inbuilt Windows Movie Maker can also serve this purpose.
Maybe the following software is your better choice,you can free download it and have a try. http://www.nidesoft.com/video-converter It can convert .MOV files to WMV or AVI format quickly and easily!
Code segment assume cs:code mov si,1500h mov di,1600h mov ax,[si] mov bx,[si+2] add ax,bx mov [di],ax mov [di+2],dx mov ah,4ch int 21h code ends end