0
votes
3answers
37 views

what's the QUALITY_HIGH and the QUALITY_LOW mean ?

There is a quality list in the class CamcorderProfile. public static final int QUALITY_HIGH: Quality level corresponding to the highest available resolution. Constant Value: 1 public static final ...
0
votes
0answers
171 views

Xuggler - Encoding video and changing the quality

I'm new to Xuggler and I wanted to create a class that can take in input a video and that gives in output a .flv video that have a standard quality. For now, following some tutorial online I made a ...
1
vote
0answers
128 views

background video hd quality html5

i'm having problems to play video on HD quality using html or anyother way.. http://www.baked.ag the problem is that when you compress to .ogg .mp4 the video looses quality.. has anyone found an ...
2
votes
1answer
121 views

What video file format and codec uses the least processing power?

I just would like to know what format and codec would use the least processing power when the file is being played back, but still maintain a good quality, in my specific case it needs to have at ...
2
votes
1answer
417 views

Improve Red5 RC1 quality in recording

is there any parameters i can change in red5 in order to improve the quality in recording because i do my best as far as the parameters of the camera are concerned, i use these: cam.setMode(1280, ...
0
votes
2answers
601 views

AS3 How do you scale video down?

I have a webcam capturing video at a certain resolution, but I want to display it at a lower resolution for preview purposes. When I scale the video down using another another video object set at ...
2
votes
2answers
156 views

how to improve the quality of resultant video when merging audio-video with ffmpeg?

When merging an audio and video with ffmpeg, the quality of the resultant video goes down. How to we improve the quality(esp. the audio quality)? The audio quality gets degraded to quite an extent ...
2
votes
2answers
4k views

iOS 4: video quality with AVAsset based application

I'm trying to create a simple video application(loading existing video file from ios 4 device, edit it using direct pixel access and save under a different name). I managed to load, edit and save my ...
0
votes
1answer
777 views

camera quality in Flash

I have this simple code to access the webcam: var camera = Camera.getCamera(); camera.setLoopback(true); camera.setQuality( 0, 100 ); if (camera != null){ myVid.attachCamera(camera); } The ...
8
votes
3answers
12k views

How can I acheive the best overall FLV quality with FFMPEG?

First of all, FFMPEG has the worst documentation of all time, and secondly, the syntax is so trivial that it's often hard to understand what some lines are doing. What I'm looking to accomplish would ...
0
votes
2answers
53 views

Videos - should I include them in my app?

Thanks to you, I got my working hours calculator on the App Store. :) Now for my next one - I want to make an app that includes video of my series of tutorials. However, I want to know whether it's ...
2
votes
3answers
1k views

Does Youtube chromeless player API support High Quality playback?

... and if so how do I load high quality versions? cheers
0
votes
1answer
96 views

Embedding Videos - Various Questions

I'm developing a website that will host some videos. The client wants control over the videos, so it will be hosted on the same server as the website. I need to know two things: What is the best ...
0
votes
2answers
943 views

how to improve video quality?

I am using the following code snippets to record screen, and in most situations recorded wmv file is clear enough, but for some part of video it is not very clear (grey color for some parts). What I ...
0
votes
2answers
3k views

Flash webcam video quality settings

I'm working on a video streaming application in Flash and I've been told I need to add quality selection tools. The requirements are "low", "medium" and "high" quality. I'm trying to figure out what ...