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
1 answer

transcoding movie files between android and ios devices

I have an iOS and Android app that allows users to capture videos and post on our server, then allows them to email the videos to other members. Problem is videos taken from iOS devices do not play on Android devices, I think the reverse is not a…
Hutch
  • 10,392
  • 1
  • 22
  • 18
0
votes
1 answer

Error playing a .mov video from Videos folder (using MediaElement)

What am I trying? I am trying to load a quicktime movie from the Video Library like this: async void SetupVideoAsyncAndPlay() { StorageFolder folder = await KnownFolders.VideosLibrary.GetFolderAsync("Video Folder"); …
Tiago Almeida
  • 14,081
  • 3
  • 67
  • 82
0
votes
1 answer

validity of a MOV instruction in assembly

Is this a valid assembly instruction ? MOV CX,0F9 I mean, as we see there is "0F9" in it, although the source operand looks like "hexadecimal" but there are no "H" symbols used at the end of the instruction (or the end of the source operand).
mohammad mahed
  • 511
  • 2
  • 6
  • 11
0
votes
2 answers

Assembly instruction mov

Can I do this in assembly mov eax, [ax] or must I specify the size mov eax, dword [ax].
Weigel Gram
  • 185
  • 1
  • 2
  • 11
0
votes
1 answer

Export frames to video on mac

I managed capturing video frames from a video card using Black Magic SDK. I can store the video frames. What I dont know how is it possible to export (render) a video file from captured frames. I would like to create a .mov video from them and store…
gbaor
  • 1,419
  • 3
  • 11
  • 19
0
votes
1 answer

Why plays Objective-C AVFoundation Video Player a MP4 file format only in Simulator and not on real device?

I need to build my own video player with AVFoundation and came way far. But the player only plays the .mp4-file in simulator. No video shows up if I run the app on a device. But if I use a .mov-file all is working fine. Also when I play the video…
headkit
  • 3,307
  • 4
  • 53
  • 99
0
votes
1 answer

play .mov file in UIWebView

I have a .mov file in my backend servers. I want to play this in UIWebView instance. This is how i am doing it using HTML5 NSString *html = [NSString stringWithFormat:@"",[mediaUrl…
Srikar Appalaraju
  • 71,928
  • 54
  • 216
  • 264
-1
votes
0 answers

Fuji .mov file converted by ffmpeg doesn't play in Windows Media Player

My Fuji X-T3 generates an FHD movie as a .mov with HEVC video and PPM audio. The new Media Player on Windows won't play this (without buying a codec) so I convert it to .mp4 using ffmpeg CLI (ffmpeg -i in.mov out.mp4). The resulting .mp4 file uses…
-1
votes
1 answer

Asembly program with mov function

Can someone explain to me what this program does and how things change in it .data x: .long 15 .text .global main main: movl $0, %eax movl %eax, x movl x, %ebx mov $1, %eax mov $0, %ebx int $0x80 when I run it in the terminal it gives this eax …
-1
votes
1 answer

Converting GIF to MOV IOS

In my IOS App I want to Convert GIF to MOV/Video. I don't Know Where To start. I researched much and finally I know is I have to use ImageMagic API for this But don't Know How to Apply It. Is there any other way except using ImageMagick??? Please…
JAck
  • 854
  • 9
  • 18
-1
votes
1 answer

Displaying a video file on a website

I have a website that will involve the user uploading a video file which can then be viewed on the website, will i have to convert the file into different formats so it can be viewed in different browsers? or can i just play mp4, ogg and mov files…
-1
votes
1 answer

ARM Cortext A9, MOVS instruction cause operation mode switching

I have a piece of ARM Cortex A9 assembly code: @ Switch to FIQ mode and keep interrupts disabled (required to have access to SPSR register) @ NOTE: The code following this point cannot result in a change to the FIQ mode SP MSR …
yelInv
  • 23
  • 6
-1
votes
1 answer

ASM mov byte array

I need to know what the last two lines of code do,everything compiles and works as expected. My section declarations are: SECTION .data prompt: db "Enter 10 digits: " plen: equ $-prompt SECTION .bss digits: equ 10 inbuf: resb …
JRX
  • 35
  • 1
  • 1
  • 7
-1
votes
1 answer

mov file playing from the web in adobe air for iOS app

is it possible to embed a mov file playing from the web in an air for iOS application? thank you
yotam
  • 41
  • 3
-1
votes
2 answers

Writing mov without accumulator

I have to redesign this code with the mov function to be written without an accumulator. I'm unsure of what this means, or how to do it. Could anyone help me out? array1 DWORD 21H,22H,23H,24H,25H array2 DWORD 31H,32H,33H,34H,35H resultLbl1 BYTE…
user2796815
  • 465
  • 2
  • 11
  • 18
1 2 3
19
20