Video Streamer Via Internet

Hi, I scoured the forums and couldn't find anything that really satisfied my question: Can I stream videos over the internet without encoding anything?
For example, I want to stream my library of about .75 TB from my computer at my college apartment to pretty much any other place I'm at, with no (or minimal) encoding. On the fly encoding would be possible to do since my computer is pretty beefy and should be able to handle it.
Linux to Windows would probably be preferable.
Last edited by brando56894 (2010-03-19 05:35:07)

java_developper wrote:
My problem is: the server can't recieve the video stream.Wowzers! That sounds like a biggie!

Similar Messages

  • Video conf via internet

    I want to creat a video conf in internet.I used jmf(RTP Manager). I modified the RTPSocketAdapter to creat a server using DatagramSocket(Port).All client connect to server to send and recieve the video stream.
    My problem is: the server can't recieve the video stream.

    java_developper wrote:
    My problem is: the server can't recieve the video stream.Wowzers! That sounds like a biggie!

  • Video downloading via internet on Lumia devices

    Can Lumia 510 dowload videos from the internet from sites other than facebook or marketplace?
    Solved!
    Go to Solution.

    You cannot download video files on Nokia Lumia 510, but you can, however, stream supported videos by opening them in the browser. If you want to get a video file on your device, you'll need to transfer it using Zune or Windows Phone 7 Connector for Mac (can be downloaded on AppStore).
    There is an app to download videos from you tube http://www.windowsphone.com/en-gb/store/search?q=youtubedownloader
    If  i have helped at all a click on the white star below would be nice thanks.
    Now using the Lumia 1520

  • Slow video streaming from internet

    When playing a video stream from a website, I get choppy playback. The playback works in 10 second groupings, then stops to retrieve more data, plays a little more, then repeats process. A 3 minute video can take 6 minutes of frustrating playback. I'm trying to start with Firefox, Windows 2000 machine (yes, it's a dinosaur) to see how to speed it up.

    This can be a problem with the file [http://kb.mozillazine.org/sessionstore.js sessionstore.js] in the [http://kb.mozillazine.org/Profile_folder_-_Firefox Profile Folder]
    Firefox stores session data every 10 seconds to make it possible to restore a crashed session.<br />
    If you have (security) software that interferes with that or have many tabs open then that cause cause a delay.
    Some have reported that increasing the session store saving interval worked for them.
    See:
    * http://kb.mozillazine.org/Session_Restore
    * http://kb.mozillazine.org/browser.sessionstore.interval

  • Video streaming from internet on BlackBerry - RIM Api

    Hello, i have been trying to stream a video from internet using Connector class and Input stream, but i had some problems with the following code:
    public InputStream inputStreamFromURI(String uri) throws Exception
    InputConnection conn = (InputConnection) Connector.open( uri, Connector.READ );
    InputStream inputStream = conn.openInputStream();
    return inputStream;      
    The method's job is return an object InputStream from the URL, in my case, I use it for get a video in mp4 format. But the previous code didn´t work, maybe because my program is trying to play the video when the file in not complete yet. Could somebody explain me the reason please? Well, the important part is than the following code DID WORK:
    public InputStream inputStreamFromURI(String uri) throws Exception
    InputConnection conn = (InputConnection) Connector.open( uri, Connector.READ );
    InputStream in = conn.openInputStream();
              ContentConnection s = (ContentConnection) Connector.open(uri);
    byte servletData[] = new byte[(int) s.getLength()];
    in.read(servletData);
    InputStream inputStream = new ByteArrayInputStream(servletData);
    return inputStream;      
    Here I get sure than the file is totally downloaded in my byte's array, then the array is used to create an InputStream, which is returned. Maybe this code could be useful for somebody. But I have a new problem: the BlackBerry support only 256 KB for download, (Model 8130; Some newest models support around 2 MB, in the best case) and I have to stream videos of around 3 MB, so I need to get the video in several parts!
    MY QUESTION IS:1- CAN SOMEBODY HELP ME WITH THIS?
    2- IS THERE SOME CODE ALREADY MADE FOR STREAM VIDEOS ON RIM API? HOW CAN I GET IT?

    Did you check at [Blackberry Java development forum|http://supportforums.blackberry.com/rim/board?board.id=java_dev]?

  • Browser video stream in internet explorer - Windows phone 8.1

    I want to create a webpage that can stream a LIVE video broadcast. And I want it to work with Internet explorer in windows phone 8.1.
    Is this possible?
    I was thinking about using jwplayer but I don't think it works with Windows Phone
    any ideas?

    Hello,
    Are you writing an app using the WebView or just creating a web page to be displayed in IE on the phone?
    The WebView hosts IE so this answer should work for you either way but... The WebView supports the HTML 5 "video" tag. The platform supports a limited number of streaming formats natively including Microsoft's propriety implementation of RTSP and
    RTSP over HTTP. If the video source is being streamed in either of these formats you can simply point the "video" tag at the server and you should be good to go.
    If you want to support a different streaming protocol such as HLS or DASH you will need to create or find a 3rd party
    Media Source Extensions plug in for the "video" tag that supports the protocol that you are using on the server. If you are severing Microsoft's Smooth Streaming content you may be able to use the
    Smooth Streaming Client SDK for Windows Phone 8.1 although I'm not sure if the HTML5 support is available outside of a native HTML5 app.
    I hope this helps,
    James
    Windows SDK Technologies - Microsoft Developer Services - http://blogs.msdn.com/mediasdkstuff/

  • Video/Audio via Internet

    What is the required download and upload speed (kbps) in order to conduct video/audio sessions in iChat via the Internet?

    Skype does not yet support video on the Mac, so the best you can do Mac to PC on Skype right now is audio to audio.
    Using the iSight camera as the Skype microphone often doesn't work very well, so you probably would be better off using a built-in microphone (if you have one) or an external USB microphone like the Logitech USB Desktop Microphone.
    If you want to discuss it further, you can try video connecting to my Mac at [email protected]

  • JMF Video Stream via Jxta

    Hi all,
    i want to Stream live video and audio from a webcam device.
    I got an mixedDatasource and can display it.
    now my question: if it is possible to stream a infinity large PushBufferDataSource via Jxta (Peer to Peer)?
    Here my code:
              Format formats[]=new Format[2];
              formats[0]=new VideoFormat(VideoFormat.YUV);
              formats[1]=new AudioFormat(AudioFormat.LINEAR);
              Processor proz=null;
              ProcessorModel mod=new ProcessorModel(mixedDataSource,formats,new ContentDescriptor(ContentDescriptor.RAW));
              try {
                   proz=Manager.createRealizedProcessor(mod);
              } catch (Exception e) {               
                   e.printStackTrace();
                   System.exit(-1);
              proz.start();
              PushBufferDataSource ds=(PushBufferDataSource)proz.getDataOutput();
              try {
                   ds.connect();
              } catch (IOException e) {               
                   e.printStackTrace();
              }thanks for any suggestions
    Greetz

    s its possible. we made project i made it . if u want sourcencode mail me to sivaitvlr@gmail,com

  • Videos played via internet are so slow and choppy, SLOW Firefox

    Was wondering if anyone knew for sure the reason why videos/movie trailers played thru either Safari or Firefox are extremely slow and choppy on my G5 imac or G4 iBook laptop. Not sure if the outdated processors cant handle the flash embedded videos Youtube, Quicktime and other sites post, but it is really annoying not to be able to watch anything smoothly. Even if i let the entire video load (if it is a quicktime), then play it, it still is very choppy. The audio plays fine, but the video never keeps up. I have a 6mb DSL connection, so that cant be the problem. Any video I play via my iPod Touch (aside from flash videos it cant play) they are as smooth as can be (And that is via a wireless connection). Which makes me think it is a processor issue. Any thoughts?
    Anyone have any suggestions on how I can remedy this situation? (aside from buying a new computer...)
    PLUS, does anyone notice how slow Firefox is, or is it just me? Seems like even when i type in this form field, time lags as the letters show up. I have the latest version, and it is so slow. Switching tabs takes time... Reading and accessing RSS fields in the Feed Sidebar plug in is really slow...
    Any ideas would be greatly appreciated! Thanks!

    QuickTime is designed to "drop" frames during playback when the machine can't keep up with the video data rate (audio continues normally). This may appear as a "stutter" during playback on an older machine.
    It's not based on the Internet connection speed.
    Apple movie trailers use the newer (2005) H.264 video codec and they demand a high CPU (Intel is best). You should get better performance on your G5 than on the G4.
    Videos encoded using Flash will be equally difficult to view on older machines

  • Capturing two video streams via firewire simutaneously

    I want to record two videos from two firewire cameras simutaneously to my hardrive directly. I have been able to record 1 stream into quicktime and one stream in imovie hd at the same time without any trouble. Just want to save the space the hd dv format video file takes up. Would buying another quicktime pro license allow me to set one quicktime for one camera and the other quicktime for the other camera. If i can do this would the record setting be best set on mp4 or h.264 if I am editing this in fcp. If this isn´t plausible, does anyone know of software out there that might solve my problem. Can you achieve this in FCP. Thanks Dave

    Just click on the QuickTime Player icon in the Applications folder. Command-C to copy it then Command-V to paste it. You now have two copies of QuickTime Player. Open one, set it's input, then open the other and see if you can set it's input separately.

  • I watch a video stream via VLC plugin; how can I open it in VLC player?

    In Windows 7 I watch TV streams that use the VLC plugin; I would like to know how to obtain the stream "address" and open it in the VLC Player itself!?

    Then ask on a vlc forum, or the TV support site.
    Some companies streaming TV will not be intending for you to operate in such a manner and potentially save their content. Copyright issues are likely to be involved.

  • Video Stream via Network

    Please help me to choose a CISCO devices

    I think you are looking some device like this :
    http://www.cisco.com/en/US/products/hw/contnetw/ps1863/index.html

  • How do I make only the video stream through atv and keep audio via pc

    Basically I am having the video streamed via atv3 to my tv via HDMI, but I want the speakers connected to my PC to be used. They're logitech speakers that have the pink-green-black 3.5mm cable setup. They can't be plugged into the TV and it appears that the HDMI stream pulls audio through the TV but I just want it to only stream the video, if that's possible.
    I have searched other forums but due to ignorance I couldn't quite understand if their questions were the same, and the answers didn't seem to fit
    Any help would be great, thanks.

    Welcome to the forums!
    What is the size limit for your email system? It may be that it is too small for any reasonable audio file. I'd suggest looking at a file-hosting and download service like YouSendIt, which would let people download the full presentation.

  • Remote video streaming not working with Windows Server Essentials Media Pack

    I installed Server Essentials Media Pack and the video streaming via remote access does not seem to be working. I see all the video files on the server's remotewebaccess page in "Media Library" group. When I try to play the video in Chrome
    the player appears for a brief moment, but then the browser starts downloading the entire file. With Internet Explorer the empty browser window opens and the download starts. I am trying it while outside of my local network. The video streaming used to work
    with Server 2012 Esesentials. Am I missing some additional codecs or remote streaming is no longer supported?

    Hi,
    What’s the default player for these media files on your computer? The issue may be caused by the default player could not load the media file correctly. Please make sure Windows Media Player
    with full codec installed is the default one. And then check if the media streaming feature could work as normal. Here is an article about how to configure the media streaming feature, hope it helps.
    Manage Digital Media in Windows Server 2012 Essentials
    http://technet.microsoft.com/en-us/library/jj628151.aspx
    Best Regards,
    Andy Qi
    Andy Qi
    TechNet Community Support

  • Video Conferrence over Internet??

    Hi all experienced JMF-ers,
    I'm new to Java, of course JMF too .But I have a big will to learn it ..
    I'm interested to develop such a video conferrence using JMF.
    I've read JMF Guide ( although I don't understand all yet ), some refference, I learn several free source code on the internet ( it helps me to understanding JMF faster ) .
    with my poor of experience I modify AVTransmit2 and AVReceive2 then I can make the code to transmit captured video and audio over LAN ( still one way stream ). Although it still makes a delay 1-2 sec.
    But then when I look at this forum, I read several messages that video conferrence using JMF still have a problem such as can't transmit video stream over Internet yet.
    Is there anyone who have solved this problem? ( I'm not testing yet for DaddyE's code for video conferrence) , if yes, I apreciated if you want to share ur depth experience about its high level architecture? And what's the algorithm ? I'll try to make the code by my self. Thanx before.
    Regards,
    Adhi

    Hi khrisna,
    i decide to make a conferrence over LAN first before it goes to internet.
    It doesn't work yet. I modify the code AVTransmit2 and AVReceive2.
    And I think I dont set the frame rate ( default from the web cam ).
    Video and Audio encoding are set just like AVTransmit2.
    I have a plan to make client-server transmit. In a Local Area Network,
    I use socket network programming.
    Now, I've a problem to clone datasource. I think someone in this forum has a problem as I have.
    whats ur suggestion about these :
    1. merge the datasource for audio and video capture first and then make it one processor. After processor has realized, cloned the dataOutput from processor, or
    2. make a processor for each audio and video capture, after both processor has been realized then I merge the dataOuput from both. and then clone the mergedDataOutput.
    which one can work better ? ur help,please!

Maybe you are looking for