Watching in a bigger size a received Video through RTP

Hello,
so here is the thing,
My code was based on AVReceive2, I received a rtp stream, then play the video in a player.
I tried to change the size of mostly anything I could, the player visual component, with the panel it was added to. Or setBounds etc... it seems like the visual component gets bigger for a really really short moment, then go back to the original streamed video size.
Is it something I should add in the repaint() function of the player ?
I just want to watch the video in a bigger size, like a fullscreen mode.
Do you guys have any ideas? Thanks a lot

First, you need to make sure you're using lightweight renderers...
Manager.setHint(Manager.LIGHTWEIGHT_RENDERER, new Boolean(true)); [http://java.sun.com/javase/technologies/desktop/media/jmf/2.1.1/solutions/SwingJMF.html]
Second, you're going to want to add the visual component to the center region of a JPanel with a border layout manager.
Third, you're going to want to set the size of the outside JPanel to be the size you want the video to be. Resizing the outside JPanel should cause the video to resize...

Similar Messages

  • My iPhon 5 s iOS 8.1.2 since 2days when i am receiving videos through watsapp it did not play and a letter appear said videos are not included in the iCloud backup how to make it included ?

    my iPhon 5 s iOS 8.1.2 since 2days when i am receiving videos through watsapp it did not play and a letter appear said videos are not included in the iCloud backup how to make it included ?

    You can recover Your music but not with original names.
    1. Go to Your iPod hard disk
    2. You must to see hidden files (if you don't see them go to in system explorer to Tools > Folder Options > View > and mark Show Hidden Files)
    3. Go to folder named iPod_Control
    4. Copy folder Music - this is Your music but not with originally names
    I'm must to say sorry - my English is not very good - I'm still learning
    I hope it helps

  • Receiving videos through bluetooth and watching vi...

    Please when videos are sent to my Lumia 520 through,either I don't see them and they still occupy memory space or they are found in pictures not videos. Pls how can I fix this,thank you.

    What is the file format of the video? It probably has a file type not supported by the phone. The phone will automatically organize received Bluetooth files according to the file type. If the file is not supported, it will not appear anywhere on the phone. You need to connect the phone to a computer to browse the phone memory if you want to delete it.

  • Watching Quicktime videos through Safari

    I recently noticed that I am unable to play Quicktime videos through Safari on my iPod Touch 1st Generation. I first noticed this when I wanted to watch the new iMac video on Apple's site. I also tried to watch the newest Apple ad on the site. I was able to watch older ads on the site. Keep in mind I am not referring to Flash videos, I know they don't play. These are actual Quicktime videos (the ones on Apple's site which are not Flash). Any ideas?

    It doesn't play on my iPod either. I have a feeling that the videos are not formatted for the iPod touch - wrong screen size, etc. Apple doesn't have a mobile site like many manufacturers so much of what you see is not optimized for the little screens.

  • How do I reduce the file size of a video?

    I need to reduce the size of a video in imovie to 200 MB.  Can anyone help me please?  Thank you.

    There are a couple of ways you could do it. One would be to make a project of this movie clip, then export it out as an MP4. Another would be to right-click on it and choose "Reveal in Finder," then open it it something like MPEG Streamclip (free download, Google it) and export it out in whatever format your recipient would like.

  • Ipod touch 4 i can no longer watch movies, transferred to the ipod, on videos app it simply says loading and then stops. On my ipad mini with older ios it still works.

    Ipod touch 4 i can no longer watch movies, transferred to the ipod, on videos app it simply says loading and then stops. On my ipad mini with older ios it still works. So how can I fix this I have tried converting videos into different formats but it will not work.
    Is IOS 8 really appropriate with Ipod Touch 4, if the older Ipods do not have the capability then why are we prompted to install new operating systems.
    Thanks.

    Try:
    - Reset the iOS device. Nothing will be lost      
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Unsync/delete all videos and resync
    - Reset all settings                            
    Go to Settings > General > Reset and tap Reset All Settings.
    All your preferences and settings are reset. Information (such as contacts and calendars) and media (such as songs and videos) aren’t affected.
    - Restore from backup. See:                                               
    iOS: Back up and restore your iOS device with iCloud or iTunes
    - Restore to factory settings/new iOS device.                       

  • HT2729 When I updated my apple phones with IOS7, the music videos can no longer be viewed in widescreen mode on the phone. When I turn the phone horizontal to see a bigger viewing of the video, album cover art pops up. Any idea how to change that? I hate

    After the IOS7 updates, when we are viewing music videos on my phones I can no longer turn the phone horizontal to see a bigger viewing of the video. I can only see it widescreen in vertical mode which is much smaller. Now when you turn it sideways, it pops up album cover art and I hate that. Is there a way to fix that?

    We are just users like you and don't know why Apple does what it does. This is not a place to "vent," it is a place to ask technical questions. As of now there is no way to change or modify the way these folders appear in Windows Explorer. You can provide feedback to Apple about this issue at this link: http://www.apple.com/feedback

  • Can I watch video through my iPhone and TV at the same time?

    Can I watch video through my iPhone and TV at the same time while using the Apple composite video cables? I am planning a trip in my car and would like to play videos for my kids through their video screen while my wife watches on the iphone from the passenger seat. I didn't want to spend $50 to find out it doesn't work.
    Thanks in advance!

    It doesn't work that way, sorry. When video out is being utilized, only the movie artwork (the cover or image) is displayed, and the actual movie is not displayed on the iPhone's screen.

  • Report Name in bigger size in output of ALV

    Hi,
    I want to print the Report name in bigger font size.
    Rightnow I am using the following line of code. Could you please help to print the Report Name in bigger size in Header of ALV Report output.
    slis_listheader is having 3 options H - Header , S - Standard, A - Action.
    I tried with H but it is printing in more size.
    FORM ALV.
    CALL FUNCTION 'REUSE_ALV_EVENTS_GET'
      EXPORTING
        I_LIST_TYPE           = 0
      IMPORTING
        ET_EVENTS             = gt_events "it_alv_event
      EXCEPTIONS
        LIST_TYPE_WRONG       = 1
        OTHERS                = 2.
      SORT gt_events BY NAME.
      READ TABLE gt_events INTO LS_EVENT WITH KEY NAME = 'TOP_OF_PAGE'.
       IF SY-SUBRC EQ 0.
         MOVE : 'TOP_OF_PAGE' TO LS_EVENT-FORM.
         APPEND LS_EVENT TO gt_events.
         CLEAR LS_EVENT.
       ENDIF.
    ENDFORM.                                         "ALV
    FORM TOP_OF_PAGE .
    data: ls_line type slis_listheader.
      ls_line-typ = 'S'.
    text = 'Program : '.
      text1 = SY-REPID.
      concatenate text text1 into text2.
      ls_line-info = text2.
      append ls_line to gt_list_top_of_page.
    call function 'REUSE_ALV_COMMENTARY_WRITE'
        EXPORTING
          it_list_commentary = gt_list_top_of_page.
    Endform.

    Hi,
    Try this
    FORM TOP_OF_PAGE .
    data: ls_line type slis_listheader.
    ls_line-typ = 'H'.  " Here you can have 3 possbile values : 'H', 'S' and 'A'
    text = 'Program : '.
    text1 = SY-REPID.
    concatenate text text1 into text2.
    ls_line-info = text2.
    append ls_line to gt_list_top_of_page.
    Also refer to this program :
    BCALV_TEST_FULLSCREEN_HTML
    regards,
    Advait
    Edited by: Advait Gode on Nov 10, 2008 3:39 PM
    Edited by: Advait Gode on Nov 10, 2008 3:41 PM

  • Can I play sound through IPad but watch the video through TV ?

    I want to play sound through IPad but watch the video through TV  using Apple TV
    Is that possible ?

    On my mac through itunes, I am able to control Apple TV sound through a master and two sub master volumes.
    One being my Apple TV volume (HDTV) , and the other being my mac (internal speakers).
    That being said, it might be possible to on iPAD through itunes (music).

  • HT2729 why can i not watch a rented video through apple tv

    why can i not watch a rented video through apple tv

    why can i not watch a rented video through apple tv

  • Can i watch whole movies(dvds) in my ipod video?

    i would really like to watch whole movoes (dvds) in my ipod video but i don't know if its possible?

    Yes it's possible but I'm still playing with geting it to work. As I understand it, you need one peice of software to rip the DVD to your PC, and then the Videora software to convert it to the mp4 format that the iPod can read. www.videora.com (I think that's the site) has a walk through on the process there.
    My first attempt works find for the video but I didn't get sound, so I need to figure out what I did wrong.

  • I need to increase my FMS buffer size for display video smoothly

    I need to increase my buffer size in FMS.
    Please let me know form where i would be increase my FMS buffer size.
    My video is running from RTMP and i faces the problem to load. video stalled between the running. so i need to increase buffer size for running video smoothly.
    Please reply me as soon as possible so i can resoled my problem.
    Thanks in advance.....

    Hi,
    You can increase the buffer size by using the property bufferTime of NetStream Object you are using. For eg: if ns is your NetStream Object then it can be done by ns.bufferTime=<desired value>.
    Also you can go through this
    http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/flash/net/NetStream.html#bufferT ime.

  • Size of sidebar video

    When placing a sidebar video in an Adobe Presenter 7 project, the video filled the entire sidebar space.  Now using Adobe Presenter 8, the same video file fills only about 2/3's of the sidebar video space.  Does anyone know how get the video to fill the entire sidebar
    space?
    Jim

    @rbalinsky
    You are looking at the live video quality settings. When uploading a FLV video to a share pod, there is not resizing or modification to the video. Just keep in mind that the pod itself may not be the same size as your video. Just make the pod larger and your video should scale to fit the pod.
    Generally speaking, for best results I encode my FLV videos to
    FLV
    H.263
    720X480
    800 Kbps
    But you can go to higher quality settings if needed. It really all comes down to bandwidth required to deliver the media and screen real estate for the media to be played on.
    I would recomend that you don't screen share your video (the desktop is fine), as screen sharing runs at 3-5 FPS (generally speaking), and doesn't deliver audio, so you will get a bad video experience when using screen sharing.

  • I am unable to receive videos or other graphic intensive downloads.  I have an iMac with Lion and the latest updates.

    I have an iMac with updated Lion OS.  Until today I have never had difficulty receiving videos or other intensive graphic downlods.  Now, for some unknown reason, I am unable to receive a BMW ebrochure or a see a video from a newsletter site.

    How do you "receiving videos or other intensive graphic downloads": in Mail or does you browser not display it?

Maybe you are looking for

  • I need an older version of keynote for my older Mac running 10.7.5

    How can I get an older version of keynote for my older Mac running OS Lion 10.7.5. I have it purchased for my newer Mac.

  • Reg: Reconcilation Account Types

    HI Guru's, In Standard SAP how many  Reconcilation Account Types are available... regards JK

  • Search HElp For Feild XBLNR1 in TC-F-02

    Hi Gurus, I have a requirement to add a Elementary search help for a field XBLNR1(Reference) in TC-F-02. This field is in standard table BKPF and no search help exit for this field. I have created a Zsearch hep in se11 . But now i want to attach this

  • Need info about cs and cs2.

    i have several copies of creative suite cs, photoshop cs, illustrator cs and illustrator cs2. but now adobe take down the server so i cant activate anymore. but i found the download link that adobe provide with serial. my question is: 1) my version i

  • [SOLVED] install i686 on USB key from x86_64 : how ?

    Hi. As written in the title, I'm trying to install an Arch system on an usb stick, with i686 architecture, from the Arch x86_64 system on my computer. I would like to do it without copying the iso to an extra usb key. From the wiki : "If you are alre