IDE :: Change The Size Of Video Playing In Window Media Player

Jul 13, 2009

I am developing an window application in which I have to change the size of video playing inside media player. i don't want to change the size of media player.

View 3 Replies


ADVERTISEMENT

Change Video Size Of Windows Media Player ActiveX?

Jun 10, 2008

I have a VB.NET application that uses the AXWindowMediaPlayer ActiveX to embed mpg videos to my application. I have used the Play/pause/stop Ctlcontrols a lot but now i am stuck as i needed to change the video size of the playing video from 100 to 200% hence my Questions:- How can i by code change the video size of the video being played? by Video size i do not mean the control's size.. but the Video being played inside it. for example, i could want the videos to play at 200% and not at 100%.- Is there a way to check the dimensions of the video being played so that i can by code change the video size if required as per the video.

View 6 Replies

Zoom Video In Window Media Player?

Jul 13, 2009

I want to make window application in which I want zoom in and zoom out functionality.I mean I want to change size of video running inside window media player.I have tried but did not suceed.

Private Sub Form2_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
xWindowsMediaPlayer1.URL = "C:\Documents and Settings\Node2\Desktop\video\bear.wmv"

[code].....

View 1 Replies

Playing Mp3, Without Seeing Media Player And Closing Player?

Aug 13, 2009

i am using following code to play a mp3 with build action for mp3 after adding to application is set to copy always...

Public
Class Form1
ivate Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles

[code].....

View 4 Replies

What Syntax Use To Buffer Video The Video In Client's Media Player

Jul 12, 2010

i want to buffer a video file on client side when it request.. what syantax i use to buffer the video the video in client's media player

View 1 Replies

Get Windows Media Player Current Playing Song?

Apr 13, 2011

VB.NET Visual Studios 2010 or 2008 only!I have searched like crazy and can't find how to get the wmp current playing song Title, Artist and Album names.

I would like to later bring this to Post to Facebook and Twitter ONLY when that button is clicked.

I have already tried things like this: (From the internet)

Dim zArtist As String = AxWindowsMediaPlayer1.Ctlcontrols.currentItem.getItemInfo("Artist")
Dim zTrackTitle As String = AxWindowsMediaPlayer1.Ctlcontrols.currentItem.getItemInfo("Title")
Dim zAlbum As String = AxWindowsMediaPlayer1.Ctlcontrols.currentItem.getItemInfo("Album")

View 9 Replies

Windows Media Player Control Playing Behind Form

Aug 25, 2010

I have been trying to tweak the form and all of a sudden it doesn't show anymore. I have tried reversing all the settings back to original but nothing. Then I have tried:

[Code]...

View 3 Replies

VS 2010 - Playlist / Playing MP3 From WebBrowser To Inbuilt Media Player

Sep 9, 2011

I have read through quite a few tutorials and videos and I am building my application quite good now, I have a webbrowser control that has a bunch of links from my website (MP3 files) now, how would I open a link and play it in my inbuilt MP3 player? When I click a link it plays in windows media player.. I want it to play the file in my app. I have a Webbrowser, a windows media player and listview, basicly I want to add the mp3 to open in the listview and be able to play it in my player, how is this possible?

View 5 Replies

.Net Video With Windows Media Player?

Jun 2, 2011

I'm having trouble working with VB.Net 2010, I'm trying to have a Windows Media Player video play, and once it ends I want it to go to a new task. But I cannot figure out how to get it to get to that new task in the event that the video ends.

View 1 Replies

Get The Size Of A Video Befor Playing

Dec 1, 2010

My program lists all my home movies filmed with various video cameras.When I select the video from the listbox, Windows media player plays the video.However, I would like to know the dimentions of the video before it is loaded.I could,therfore, tell which camera was used to film it.Some video is 1920 by 1088 frame width/height Some is 1280 by 720 and some various other sizes Is it possible for VB 2010 to give me the dimentions ??

View 2 Replies

Add Commercial Or Spots In Running Media Player Video File?

Dec 11, 2011

I m design a media player in vb.net..now i play 1Gb video movie.. i want to set the commercial time like every 15 mint my video automatically stop and some commercials play automatically after complete commercials my video[code]...

View 6 Replies

Display Windows Media Player Song/video Name In A Label?

Dec 20, 2009

Display Windows Media Player song/video name in a label?

View 1 Replies

Get A Video To Play In Windows Media Player In Visual Studio 08 Professional?

Jul 18, 2009

So I found the Windows Media player and added it on my form. I have a sample wmv called bear.wmv file in my solution explorer. How do I get the video to play? I was hoping for a smart tag and just connect the player to the wmv file,

View 1 Replies

Program Infront Of Windows Media Player Full Screen Video?

Apr 13, 2012

One of the things my VB.NET program does is play video files using the Windows Media Player component that comes with VB. My program also switches the WMP component to full screen but once in a while the form will be on top of the full screen video. I am hoping that you fine and knowledgeable folks cat this from happening. The problem occurs when the next video file is played automatically. I'll do my best to post a bit of code but since I don't have much of an idea what might be causing this I'll just have to guess. The project has gotten quite large over the years I've been writing it and if any more code ito post any or all of it, though I'm sure no one would like to go through all 1771 lines of it.

Private Sub WMP_PlayStateChange(ByVal sender As Object, ByVal e As AxWMPLib._WMPOCXEvents_PlayStateChangeEvent) Handles WMP.PlayStateChange
If Stopping = True Then

[code].....

View 7 Replies

Windows Mobile Appication - Have A Media Player To Play Video On The Application?

May 1, 2009

how have a media player to play video on the application??? is there a drag and drop media box?

View 1 Replies

Play Specific Portion Of A Video File Using Windows Media Player Control?

Sep 18, 2009

I'm using the windows media player (wmp.dll) in vb.net 2008 and would like to know if it's possible to play a specific portion of the video. For example, I would like to start to play the video X minutes from the start and for Y amount of time.

View 1 Replies

Play Specific Portion Of A Video File Using Windows Media Player Control In Program?

Sep 18, 2009

I'm using the windows media player (wmp.dll) in vb.net 2008 and would like to know if it's possible to play a specific portion of the video. For example, I would like to start to play the video X minutes from the start and for Y amount of time.

View 1 Replies

Change Image While Media File Is Playing

Mar 17, 2010

I've created a media player by using Media Player Component. Let's say that I have a picture box that controls the player. I want to try if the media player is playing a file, the picture box will disappear. I've tried to put these code into Form Load but nothing change.[code]...

View 1 Replies

C# - Display Text On Window Media Player Or Monitor

Feb 13, 2011

I would like to display text like my company name on the window media player. I use DrawString function on Form onPaint event but it is covered by the window media player. I also use Label control but it display square block on the player control even i set the back color to transparent. I develop KTV system it has two monitor one has form controls and another has player.

View 1 Replies

Window Media Player - Suppressing Full Screen?

Mar 12, 2010

I'm using Windows media player to display movies within my vb.net application - which works fine. But I have noticed if I double-click the movie it expands to full screen, which I don't want. I want it to stay in the window where I put it. I cannot find a setting that affects this,

View 2 Replies

Make VB 2010 Media Player Using Picturebox Not Windows Media Player?

Jun 9, 2011

make media player in vb6 or vb2010.. not using windows media player..

View 1 Replies

Change Windows Media Player Skin Like Wmp 12?

Aug 11, 2011

I create one application using vb .net and vs 2010 in which windows media player is exists. But the player is not looks like media player 12 ve3rsion. It looks like media player 9 version. How to change the appearance or skin of media player

View 2 Replies

Play Swf File In Media Player Current Video File?

Dec 13, 2011

I m trying to create media player .i want to add an swf file in current running video file at the top of my video player or bottom of my video.

View 2 Replies

Directx Audio Stops Playing When Change Window?

Sep 15, 2009

So I have a wav playing using DirectX in VB6. If i switch to another window, it stops playing. If I click back on the VB6 window it resumes play. How do I make it continue playing when I change windows? Another problem I cannot load wav files larger than 50 megabyte. It says Out Of Memory. How can I increase that?

View 1 Replies

IE Window - Size The Window, But Not Change The Windows Location On The Screen?

Jun 21, 2011

im using vb.net to open IE and go to a website... i can figure out how to size the window, but not change the windows location on the screen... how can i make the IE window position always 0,0

Dim oIE As Object
Dim hWnd As Long
oIE = CreateObject("InternetExplorer.Application")[code].....

View 3 Replies

Change The Size Of The Button With Size Of The Window?

May 15, 2012

How do I connect the size of any button in the form to the size of the window so that it would change proportionally to the size of the window?

View 1 Replies

Get Media Playing Now Playing Using Sendmessege / Wmp.dll?

Jan 22, 2010

How I can get the Media playing now playing using Sendmessege or wmp.dll?

View 5 Replies

Made A Media Player But When Click Open With It Opens The Player But Doesn't Load The Film

Jun 28, 2011

Public Class EasyPlayer
Private Sub EasyPlayer_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
System.Diagnostics.Process.Start("MediaPlayer")
End Sub

[code]....

View 1 Replies

Indows Media Player Doesn't Play The FLV Player?

Apr 10, 2009

I want to know that how to add FLV payer component in VB.Net..cz windows Media Player doesn't play the FLV player.

View 2 Replies

VS 2008 Change Frame Rate In Visual Basic 2008 Media Player?

Feb 26, 2010

How to change the frame rate in Visual Basic 2008 Media Player? I have error: System.NullReferenceException was unhandled Message: Object reference not set to an instance of an object. IS there any way to fix this? Here's My Code

[Code]...

View 2 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved