Questions tagged [mov]

Questions related to the assembler `mov` instruction

The assembler mov instruction loads an immediate value into an register or transfers data between register and register or register and memory. See:

296 questions
0
votes
2 answers

converted mp4 file using ffmpegvis not playing JW player

Just i converted mov video file to mp4 file using ffmpeg. But the converted file is not playing JW player. Actual mp4 file videos working fine in all browsers. Thanks for help.
shiva
  • 89
  • 8
0
votes
1 answer

Embedding Sample QuickTime (.mov) video

I need to display sample .mov video on my site, I need one that won't be deleted anytime soon and the host won't block me me for embedding it on my website. Unfortunately sample QuickTime files on Apple's site are compressed:…
Wordpressor
  • 7,173
  • 23
  • 69
  • 108
0
votes
0 answers

MOV to AVI Conversion - file size 0 bytes

I want to convert a MOV file to AVI file as a part of my project. The MOV is getting converted properly from a set of JPEG files. But am not able to convert the MOV to AVI. It says the output .avi file is of 0 bytes. Can somebody help please? Here…
0
votes
2 answers

Explaination of assembly code

These are the 4 lines of assembly code. i am trying to understand them. (It is intel syntex.) – mov eax, ebx – mov eax, [ebx] – mov eax, [ebx+ecx*X] (X=1, 2, 4, 8) – mov eax, [ebx+ecx*X+Y] (Y= one byte, 0-255 or 4 bytes,…
narayanpatra
  • 5,627
  • 13
  • 51
  • 60
0
votes
2 answers

How to pipe multiple files to ffmpeg?

I am trying to make a bash script that searches all subfolders on given path for .mov files and converts them with ffmpeg and outputs them in an destination folder, keeping the clip name. I'm very new to scripting and I'm having a hard time finding…
Olung
  • 5
  • 1
  • 2
  • 5
0
votes
0 answers

Java video output can only be opened using Quicktime but no other media player can open it

I have a program and that captures the screen and then takes those images and turns them into a movie. (Using the JpegImagesToMovies.java that was customized to work with .png) I have tried multiple extensions: .mov, .mp4, .avi (I am open to trying…
user2612619
  • 1,119
  • 3
  • 11
  • 28
0
votes
0 answers

Real-time movie building from bitmaps

I need an advice how to save captured frames in bitmap format into real-time groving movie. I need to create a movie file (.mov if possible) what will groving during capturing and can be used by other processes. If its possible I would like to use…
gbaor
  • 1,419
  • 3
  • 11
  • 19
0
votes
1 answer

Programmatically concatenating MP4 or MOV files

I have two MP4 files I need to concatenate and I need to do this programmatically - i.e. command line tools are not going to cut it. ffmpeg is not a possibility from a licensing point of view. For clarity, there is no preview, poster, edit or any…
Dave Durbin
  • 3,562
  • 23
  • 33
0
votes
3 answers

MOV instruction - how it works

I have the following MOV instruction: mov [SI], DX SI = 3333h DX = A3A3h IP = 104h Everything is clear, the A3A3h value is saved under the 3333h adress. However I found some strange explanation of this specific mov instruction: [30030 +…
user2489034
  • 239
  • 2
  • 3
  • 15
0
votes
1 answer

Convert qtvr file to mov

I have received QTVR files (Panorama files) from my client and I was supposed to convert it to mov, and later convert it to mp4. Does anybody know any softwares to convert them? I have used Pano2Movie, but it seems my trial version is already…
Henry Gunawan
  • 922
  • 3
  • 18
  • 38
0
votes
2 answers

ASM lodsw to mov and inc

I have in my simple program loaded some strings into mov si, song witch load: song: %if 1 dw E0, C, A, E1, C, A, E2, B, A, E3, C, B %endif dw E0, C, A, E1, C, A, 0 E0 equ 14000 etc... Im loading elements from it with lodsw; (one transition use…
0
votes
2 answers

storing a constant in memory using ASM

What would be the proper gcc compilable GAS ASM code to store my constant $3360220 in a memory location 0x7FFFFFFFb098? Will this produce the desired result? Is it ok that the movabs instruction "spills" on the next line? added question: my…
Stanislaw T
  • 420
  • 1
  • 6
  • 20
0
votes
2 answers

Assembly MOV doesn't work, Debug for Linux and INT code list

I have a problem here... I'm using debug (in cmd/ms-dos) to learn some things and to peforme some commands... I set AX to 1234 and DX to ABCD. So, I did '-a 100' to register a instruction, I did: mov ah,dl And them "-g" (because I set an…
jacksonbenete
  • 159
  • 1
  • 9
0
votes
1 answer

Cannot convert MOV files to other video formats using avconv on Ubuntu

I recently received some MOV files that had been recorded on an iPhone (not sure which version - I can get that info if needed). I have been trying to convert these MOVs into another format (anything, really) so that I can edit the clips in…
glossarch
  • 272
  • 5
  • 18
0
votes
1 answer

Analyzing assembly code EX "mov %eax,0x8(%ebx)"

This is a hw problem. I am not asking for the answer to not have 'explode_bomb' ever run. I am asking for clarification/guidance on what is happening in a small segment of code. This is what I'm trying to figure out (what is happening at the…
user2233600