smooth

Java controls animation - how to make them smooth and efficient

I am programming some custom controls in Java and using animation for transitions/fades/movements. The way I am doing this is that I am starting a new thread and making adjustments to variables and things are adjusted using paint() method. Example: Now, my question is, let's say for instance that I was implementing a fade in. What I w...

which jquery plugin can do the dynamic smooth vertical menu scroll?

ok i'm new to jquery, but how can i do a feed like the one at twitter.com where they have the "top tweets" update with the latest tweet by scrolling the whole menu down just enough space to allow the new item to fade into the top spot? easy to do? do i need a plugin? i looked around and what i don't want is just a carousal type plugin...

how to do a smooth scrolling + fade in live feed with jquery?

i've found a lot of news ticker plugins that kinda do what i need, but not exactly. i want to do exactly what twitter.com does on their home page with the "Top Tweets". facebook also does this on their feed. basically whenever i have a new item i want all the LIs to scroll down, make room for the new LI on top, and fade it in. the ne...

DirectShow: select a source video stream from an MP4 container

I am building an application that needs to read H264 and AC3 streams from a MP4 container and mux them into a single ISMV file. The source MP4 file contains a number of video streams of different bitrates and a number of audio streams of different languages. When I call IGraphBuilder::AddSourceFilter for my source file, I get a filter t...

Histogram Smoothing

Hi, I have a probably pretty simple question but I am still not sure! Actually I only want to smooth a histogram, and I am not sure which of the following to methods is correct. Would I do it like this: vector<double> mask(3); mask[0] = 0.25; mask[1] = 0.5; mask[2] = 0.25; vector<double> tmpVect(histogram->size()); for (unsigned int i...

How to get really smooth moving objects using openGL

Dear reader, I'm working on an application where I draw a circular progress indicator which slowly gets "filled", here you can see a couple of images. I'm using intermediate mode and I'm only drawing this circular shape by drawing the vertices at each frame update (see code below). When the circle fills up the border line between the wh...

Problem in Silverlight smooth streaming in Chrome

Sometimes i'm getting a problem in google chrome when i try to play a smooth streaming video. Can someone please test this link: http://bizup.cloudapp.net/post/136 Thanks, João ...

Tahoma text doesn't look smooth

Hi, I'm using the Tahoma font for my website's logo, and it doesn't look smooth, anti-aliased, like it does in my design on GIMP. Anyone know of ways to make HTML text look better, or am I going to have to just go with an image? Also, could someone explain to me why text looks this way in HTML, and why it never seems like it looked this...

OpenGL Smooth Polygon

I am trying to make this a smooth polygon using OpenGL, but it is not doing anything. Can someone please explain what I am doing wrong? glColor4ub(r, g, b, a); glEnable(GL_POLYGON_SMOOTH); glHint(GL_POLYGON_SMOOTH_HINT, GL_NICEST); glBegin(GL_QUADS); glVertex2i(x, y); glVertex2i(x1, y1); glVertex2i(x2, y2); ...

Silverlight Video File Won't Play; Can see .ism/manifest

I am running Windows Server 2008 SP2. I have an IIS 7.0 Webserver installed running IIS Media Services Beta 1. I also have WebDAV 7.5 installed. I encoded a video file, MP4(H.264/AAC), to the smooth streaming protocol using Expression Encoder 4.0 Pro. Under "Default Web Site" I added a virtual directory to the encoded video and created ...

How to speedup & make the cells smooth scrolling in iPhone?

Hi, i did a text rendering program using UIView and UITableViewController. What i did is before going drawRect method, i just calculate all of the cells height as well as each text start & height,width. So that, i can estimate the cell height approximately and then i draw the text. I did this for both portrait & landscape mode. My progr...

Delphi 6: Can native Delphi do smooth graphics like Flash?

I have a native Delphi TFrame that emulates Roy Tanck's Cumulus Tag Cloud viewer, a WordPress Flash plug-in. What that plug-in does is create a 3D sphere of words that spin around on the surface of a "virtual" sphere. You can see it in action here: http://www.roytanck.com/2008/03/06/wordpress-plugin-wp-cumulus-flash-based-tag-cloud/ ...

Which CDN does Netflix and Hulu use and how can they offer unlimited streaming for $10 per month?

Do anybody know which CDN Netflix and Hulu use for hosting their content and what they are paying for traffic/streaming costs? (meaning; how can they possibly offer unlimited streaming for about $10 per month when considering all the streaming traffic costs I would think that they have to pay?) Also, is it possible to set up Silverli...

C# smooth object movement

I have all the necessary code to move and click the mouse via C# code, but I don't want to just set the mouse position to X and Y; that will look jerky. Instead, I want to have a smooth transition from point X1, Y1 to point X2, Y2 over Z seconds. Similar to keyframing. I'm looking for a method similar to this: public void TransitionMou...