Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

playing videos

Status
Not open for further replies.

KryptoS

Programmer
Feb 7, 2001
240
BE
Hey,

I'm playing some videos. The user can chose different resolutions (low, medium or high). When I play the video with low resolution with media player the size of the video is small. But when I play it in high resolution I see the video larger. But I want always the same size of video. How can I do this? I thought that when I set my object width en height always the same that this would work. But it won't :(. I have the same problem when I want to play the video with quicktime.

<object classid="clsid:6BF52A52-394A-11D3-B153-00C04F79FAA6" width="160" height="165">
<param name="URL" value="video.wmv">
<param name="rate" value="1">
<param name="balance" value="0">
<param name="currentPosition" value="0">
<param name="defaultFrame" value>
<param name="playCount" value="1">
<param name="autoStart" value="-1">
<param name="currentMarker" value="0">
<param name="invokeURLs" value="-1">
<param name="baseURL" value>
<param name="volume" value="50">
<param name="mute" value="0">
<param name="uiMode" value="mini">
<param name="stretchToFit" value="0">
<param name="windowlessVideo" value="0">
<param name="enabled" value="-1">
<param name="enableContextMenu" value="-1">
<param name="fullScreen" value="0">
<param name="SAMIStyle" value>
<param name="SAMILang" value>
<param name="SAMIFilename" value>
<param name="captioningID" value>
<param name="enableErrorDialogs" value="0">
<param name="_cx" value="4233">
<param name="_cy" value="4366">
</object>


The One And Only KryptoS
 
KryptoS said:
When I play the video with low resolution with media player the size of the video is small. But when I play it in high resolution I see the video larger. But I want always the same size of video. How can I do this?

Maybe I'm missing the point... But isn't the point of having a higher resolution image/video/anything just that - that its resolution is higher, and thus it will be bigger?

Dan
 
The solution to the problem is going to be to resize all your videos to the same same (at source) - then they will all play in the same width/height.

Maybe what you are after is different quality movies that are the same (physical) width and height (maybe compressed with different algorithms). In which case... you need to make sure the software you use to re-sample the movies always sets the same width and height (in pixels).

Jeff
 
Quote:
But isn't the point of having a higher resolution image/video/anything just that -that its resolution is higher, and thus it will be bigger?


The point is that the quality is better. But not the size of the image/video/...


Any idea what software I need to use?

The One And Only KryptoS
 
quote:
But isn't the point of having a higher resolution image/video/anything just that - that its resolution is higher, and thus it will be bigger?

the point is that the quality is better, but not that the screen will be bigger.

Any idea what software I can use?

The One And Only KryptoS
 
self said:
But isn't the point of having a higher resolution image/video/anything just that -that its resolution is higher, and thus it will be bigger?

KryptoS said:
The point is that the quality is better. But not the size of the image/video/...

When talking about digital images or digital video, that are created from pixels, if the resolution is higher (so, say 640x480 instead of 320x200), the image (or video) will be clearly be bigger.

Jeff may well have it - you could be confusing the resolution of the image/video with the quality (with regard to compression and file size).

Dan

 
>> Any idea what software I can use?

You can resample videos using Cleaner (available from - however it is a professional (Hollywood) package, and costs $$$$... I don't know of any cheaper ones, but try searching on Tucows.

Dan
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top