Frame rate (also known as frame frequency) is the frequency (rate) at which an imaging device produces unique consecutive images called frames. The term applies equally well to computer graphics, video cameras, film cameras, and motion capture systems. Frame rate is most often expressed in frames ...

learn more… | top users | synonyms (1)

0
votes
0answers
19 views

Frame rate when using requestAnimationFrame()

I am trying to explore animation with javascript and decided to make a small game that just involved getting a player to jump over obstacles as they came towards them. It seems to work ok (although ...
5
votes
1answer
161 views

Smooth KineticJS animation, controlled speed

I am creating a simple plane animation in KineticJS for the fun of it. Currently the animation runs a little jerky I would love to have some easing or tweening although I don't know how to begin. ...
2
votes
0answers
53 views

Sharing material in Unity3d

I have 12 materials in total in my game.Then I have various Gameobjects that have many materials attached to it for example Gameobject1 further have 10 Childrens each of which use 2 same Materials.Now ...
2
votes
1answer
81 views

Full-screen frame-rate limit conundrum

my game(framework) can't go faster than 30 frames per second(about 33 ms between update calls) in full-screen. I use a Timer for the loop. Actually it gets a bit more complicated, since when i ...
3
votes
1answer
58 views

Constant and probably inaccurate Frame Rate

I am using the following code to calculate Frame Rate in Unity3d 4.0. It's applied on a NGUI label. void Update () { timeleft -= Time.deltaTime; accum += ...
0
votes
0answers
41 views

Frame rate with my mobile camera, as a webcam

I'm trying to make application in movement detection with Aforge.net framework. And I'm using my mobile camera connected to my laptop.I'm using DroidCam software with my mobile, so I can connect my ...
0
votes
0answers
42 views

How to reduce the frame-rate programmatically with FFMPEG

I'm looking for a way, or the best way, to get a high-frame-rate movie in a stream (http or rtsp) to run smooth on my (in my case) iPhone app. The normal frame-rate movies run smooth (approx. 30fps), ...
3
votes
2answers
105 views

Choose not to support iOS device

I am building an app that is a bit heavy on graphics and it runs with a poor framerate on the iPhone 4 but runs fine on 4S and 5. Is there a way to choose not to support 4 and earlier? I've seen ...
2
votes
0answers
200 views

ffmpeg audio synch issue - fractional framerate

We are working on an Android app which uses the ffmpeg library via JNI to edit the frames of a video while keeping size, codec etc the same. We are having an issue where the audio of the output ...
0
votes
2answers
35 views

Language and Platform [closed]

I am really new to Windows platform. I was wondering if you guys can give me a tip on which language to start on and which platform is the best and easy to learn and use for the following I will ...
0
votes
0answers
18 views

Strange FrameTime Variation

Im writing a 3D-Game using c++ an opengl and I recognized, that every 20-50 frames the frametime is about 10 times higher than usually. Even in this programm, where I only calculate the Frametime, I ...
1
vote
0answers
89 views

Video from VFR Image Sequence

I am using ffmpeg to create video from an image sequence that is taken from the Android Camera's PreviewCallback method onPreviewFrame... The images are written to a pipe that is connected to ...
1
vote
0answers
72 views

Measure the framerate of an WPF Application

I know, there are quite a lot of posts about this topic. The Problem isn't the measuring method itself. I use the following event: (Thanks to Evan's Code Clunkers) public static class ...
2
votes
1answer
122 views

Why does OpenGL double-buffering seem to be inconsistent performance-wise?

I'm making a simple graphical app on OSX. I just started monitoring the frame rate by checking the difference in system time between frames. It seems to be hanging a bit every few frames. The app ...
5
votes
1answer
132 views

Animating multiple DIV-Elements with JS and the DOM results in a low Framerate

Preface I just started programming with javascript and I am currently working on this hobby web-site project of mine. The site is supposed to display pages filled with product images than can be ...
0
votes
3answers
86 views

asynchronous / variable framerate in javascript game

This may be a stupid/previously answered question, but it is something that has been stumping me and my friends for a little while, and I have been unable to find a good answer. Right now, i make all ...
0
votes
1answer
66 views

DirectX.Capture FrameRates

I'm using DirectX.Capture library to save to an AVI fomr Webcam. I need video to be saved to have 50fps or more, but when i use this: capture.FrameRate = 59.994; FrameRate doesn't change at all. ...
0
votes
0answers
87 views

How can I get the Frame Rate from a WPF application

I am writing some unit tests for a WPF application, and need to get the Frame Rate from an external application. Perforator - the performance profiling tool from Microsoft gives me the data I need, ...
3
votes
0answers
121 views

Unity3d external camera frame rate

I am working on a live augmented reality application. So far I have worked on many AR-Applications for mobile devices. Now I have to get the video signal from a Panasonic P2. The camera is an ...
0
votes
1answer
63 views

Java JFrame setSize induces lag

I have a simple thingy that I'm testing out with Java. package us.superdisk.Teststs; import java.awt.Dimension; import java.awt.Graphics; import java.awt.Graphics2D; import java.awt.MouseInfo; ...
0
votes
1answer
207 views

Android draw image performance

I'm making a simple game very similar to Pong. The main mechanic in the game involves swiping the screen to draw an image over the background, and then subsequently sprites are drawn on top of those ...
1
vote
0answers
121 views

Android slow frame rate

Apparently this is a popular topic. Im a beginner, so my problem is probably something fairly trivial. This is a very simple game kind of like Pong. I am using this code to draw my game: @Override ...
0
votes
0answers
142 views

Stage3D frame rate increased when running chrome in the background

I've encountered a really strange issue when trying to run a full-HD Stage3D test. Got an example animation running but it has a strange pulsing lagg and a steady fps of around 40. But if I start ...
0
votes
0answers
63 views

Unity3D (Android): Why is the Motorola Xoom (Dual Core) lower than the Samsung Galaxy S (Single Core)? [closed]

Why is the Motorola Xoom (Dual Core) framerate lower than the Samsung Galaxy S (Single Core) framerate in Unity3D? It has to do with the resolution and the size of the display? Is there a setting in ...
2
votes
2answers
203 views

Smooth 60fps frame rate independent motion in AS3

I'm having trouble achieving frame rate independent motion in AS3 at 60fps. Every frame I measure the time since the previous frame, add it to an accumulator, and if the accumulator is greater than my ...
0
votes
0answers
167 views

How to get total frame count using iOS & OpenCV

I'm trying to read video file and get its properties using opencv & ios. Reading is ok, but i cant get correct property values. Every time i got 1, instead of real number. cv::VideoCapture ...
0
votes
1answer
119 views

SFML Drawing OpenGL to multiple windows extremely slow

Here is the situation: I have 4 SFML windows, which are inside a container which I have built. The container calls independent redraw methods for each window, starting with the first and ending with ...
0
votes
0answers
24 views

Improving framerate in my program?

I'm trying to create a game in Processing where you answer trivia questions by grabbing keys with the letters you want and avoiding the ones you don't, but I'm running into some problems with the ...
9
votes
1answer
207 views

DirectX application “hiccups” every 3 seconds

I've been investigating an issue in my DirectX 11 C++ application for over a week now, and so I'm turning to the good people on StackOverflow for any insight that may help me track this one down. My ...
1
vote
2answers
567 views

Animation, FPS, and KineticJS

So I have a little game of a ball moving around on the screen and I would like to calculate the FPS. I am using KineticJS (4.3.1) which utilizes requestAnimationFrame under the hood. var anim = ...
0
votes
0answers
141 views

Custom JW Player (v5): how to optimize the framerate?

I'm using a fork of the fl5 project ( http://developer.longtailvideo.com/trac/browser/trunk/fl5 ) and recompile it in Flash builder with features I've implemented (draw over the movie, add text, ...
0
votes
0answers
75 views

QTKit replicate cinema tools conform tool with correct audio scaling

I'm trying to write a tool that changes a QuickTime clip to a different frame rate, replicating CinemaTools' "conform" function. I've managed to get the movie and the video tracks to behave properly ...
0
votes
0answers
108 views

How to program the MAXIMUM sampling rate for an iPhone camera

I found this reference on how to program a different frame rate for an iphone camera app: Which states that you need to set the videoMinFrameDuration/videoMaxFrameDuration = CMTimeMake(1,60); for ...
-1
votes
2answers
120 views

What is the ideal framerate for my game? [closed]

I am making a game in Java using the Slick2D library, and I am having trouble finding an ideal framerate to run it at on my Mac. If I set the target (max) framerate to 60, items will lag behind my ...
0
votes
0answers
158 views

how to export 1x speed video from openCV + python

My current mode of recording video using opencv looks something like this import cv capture=cv.CaptureFromCAM(self.deviceID) img_size=cv.GetSize(cv.QueryFrame(capture)) #create a writer object ...
-3
votes
1answer
85 views

Low frame rate in OpenGL [closed]

I have a blender obj. file in an OpenGL application. I have also added a camera so that it will move in around that object (it's a building, so it's pretty large). The frame rate on it is awful. Why ...
1
vote
2answers
98 views

Addition of output file for renaming video batch

With thanks to David Ruhmann, yesterday I got my batch file working for renaming videos: @echo off setlocal EnableExtensions EnableDelayedExpansion :: Create Empty Folder rd /Q "%Temp%\Temp" ...
0
votes
3answers
536 views

SFML - How to unlimit framerate?

I am trying to completely unlimit the SFML framerate, so that as many frames will be displayed as possible. The reason for this is I want to loop through one section of code which calculates positions ...
0
votes
1answer
13 views

How can I avoid decreases in framerate in a game with a lot of instances of an object class?

I'm writing a game that requires a large amount of instances of a "Monster" class that contains very basic data - namely: -Angle of rotation -Damage potential -Max health -Current Health And that's ...
1
vote
1answer
256 views

unexplained frame rate drops only on the iPhone 5

I have an iOS application that grabs frames from the devices camera and does some quite CPU intensive image processing. On the iPad 2, iPad 3 and iPhone 4s the application happily runs at 30 frames ...
0
votes
1answer
130 views

Processing: efficiently drawing a gradient [closed]

I'm new to Processing and I've been working on simulating electron motion. Everything seems fine until I'm try to add a gradient color to each particle.The frame rate drops considerably. Here is ...
1
vote
1answer
189 views

how do I use Imagemagick to determine the framerate of a GIF?

I am using Imagemagick to turn a gif into a corresponding series of jpgs and I am trying to determine when each jpg happens in a series. stolen from How do I detect an animated GIF's ticks per ...
0
votes
0answers
108 views

AVPlayer frame precision

Goal : During playback of a movie must be carried out actions with precise timing. I use for that an AVPlayer with a PeriodicTimeOberver with a CTimeMake(1000,25000). My movie framerate is 25fps. ...
0
votes
0answers
80 views

Read Framerate from Header in PHP or JS

Is there any way to read the framerate of an mp4 file with php or javascript without having access to shell (no system() etc.) I thought of readfile or fopen, but i just can't find anything on google ...
1
vote
2answers
666 views

libavcodec get video duration and framerate

I have a video encoded in .3gp h.264 and I am looking to get its framerate and duration in C. Here is the code I use after opening the file and finding the appropriate codecs: AVRational rational = ...
0
votes
1answer
84 views

How can i re-set the frame-rate of avi file after its done?

I had coded a program that records a screencast using AviFile Lib and set the framerate, but i need to adjust the framerate after the recording its done. How can i re-set the header of the avi-file ...
1
vote
0answers
127 views

How to modify the framerate on android

I'm developing an android app to send the live Video & Audio stream to other PC, the app can capture the camera and mic and send the live stream and use VLC player to play it, it works very well ...
1
vote
0answers
392 views

Android OpenGL ES 1.1 poor performance under ICS - eglSwapBuffers taking 60+ms

I am currently working on an opengl ES 1.1 game, min sdk 8, target sdk 17 and I am seeing an unusually large delay in eglSwapBuffers on the 4.0.3 tablets I have access to that does not appear on ...
1
vote
1answer
157 views

Flash recommended Frame Rate - 2012 [closed]

What is the recommended FPS(Frame rate) to use in flash applications? Both for games and for simple applications. Let's assume that even simple applications are yet flash applications and they do ...
0
votes
1answer
555 views

Processing / C920 logitech capture frame rate video discourse

I'm developing on Processing 2.0b, and i just bought a C920 logitech webam for a good capture quality. Then I try to capture at 1920 x 1080, the problem is that I'm under 15 fps per seconds.. When I ...

1 2 3 4 5