Winamp & Shoutcast Forums

Winamp & Shoutcast Forums (http://forums.winamp.com/index.php)
-   Shoutcast TV / Nullsoft Video (http://forums.winamp.com/forumdisplay.php?f=152)
-   -   Streaming video and ampx ravetraxx activex player (http://forums.winamp.com/showthread.php?t=252078)

newborn 27th July 2006 15:59

Streaming video and ampx ravetraxx activex player
 
We have recently implemented the ampx player on our site. It works fine with audio but video does not. We have tested with both V3 and VP62 Codec using NSV Live capture but when you click play nothing happens. The streams work fine when opened in winamp. Some assistance would be apprieciated :)

sankt 27th July 2006 20:08

What is the exact URL that you are using in the embedded AmpeX player ?

newborn 27th July 2006 21:39

the stream that we are testing video with is not up 24/7. No one else has attempted video at this stage that I know of.

I could arrange this with a pre-encoded file to be up as a test stream but I dont think theres much to tell by that as the player does not initalise when video is streamed (click play and nothing happpens) whereas it works perfectly with audio. All listen2myradio stations use the same player and can be found through the main address, stations are listed on the left.

sankt 27th July 2006 22:15

What I mean is - what is the url syntax that you are using within the embeded player ?

Example : http://IP _ Address_OR _Dot_Com_Address:8001/;stream.nsv

The semicolon and the stream name are both required within the URL format.

newborn 27th July 2006 22:47

ahhh ok.

Well I would imagine that is contained in the php not visible and not in the source of this

http://listen2myradio.com/pirsum.php...7.20&port=4728


I unfortunately do not have access to the php. I need to wait until the coder comes back, he is currently afk during the week. I will ask him as soon as possible.

Smelter 27th July 2006 23:32

i thought that was coded for 6.1 but I also thought it supported all formats. and also maybe the code base location for on2's dll's are moved.

Smelter 27th July 2006 23:36

<!--// enter stream location/url here //-->

var leakurl = 'http://84.95.247.20:4728';

This is your page's stream ip, looks like it needs the stuff mentioned above.

newborn 28th July 2006 00:08

ok it would check those links in sequence then ? So im guessing if so the nsv link would go above that normal stream link.

I'm not the coder.. but im trying to make it as easy for him as possible as he hasnt got much time atm.

Thanks for the help, what your saying adds up to what the problem looks to be :)

Smelter 28th July 2006 14:52

your stream works fine with this link

http://84.95.247.20:4728;stream.nsv

newborn 28th July 2006 15:10

its the embedded player thats the problem I think. As I said i sucessfully viewed the video transmission in winamp :)

I have put a test stream up but I dont know if you will learn anything by it. Please access through http://harddance.listen2myradio.com after the 5 second page please click 'Cant hear click here' this will take you to ampx player page. To open in winamp click the same link again.

Im streaming in Video only....


What you said about adding that code will fix the embeded player ? Is that the definative answer.. anyone??? :)

sankt 28th July 2006 20:35

Using the correct url syntax as previously explained, will resolve the issues that you are having with the embedded AmpX player.

http : // ip address : port number / ; stream name . nsv

These are required to distinguish the stream as a Video stream and not a Audio stream.

newborn 28th July 2006 20:38

super.. cheers :) like this then

<!--// enter stream location/url here //-->

var leakurl = 'http://84.95.247.20:4728;stream.nsv';
var leakurl = 'http://84.95.247.20:4728';

it initally checks the video link and then the audio.. as streams may vary on their content..yup ?


Or does a player have to be fixed to either video or audio ?

We do have an alternative player on a different page that we can use for audio if this is the case.

Smelter 29th July 2006 02:11

probably just the first one

sankt 29th July 2006 02:52

smelters right - it will be the first one

<!--// enter stream location/url here //-->

var leakurl = 'http://84.95.247.20:4728;stream.nsv'

You will need to ensure that the broadcasters use " stream " as the name of their nsv broadcasts.

newborn 29th July 2006 12:03

So the player will only player one stream type? i'm still not clear on this.. sorry..


that > var leakurl = 'http://84.95.247.20:4728;stream.nsv'
is not going to work with a audio only stream is it?

sankt 29th July 2006 14:31

This URL syntax is specifically for video

var leakurl = 'http://84.95.247.20:4728;stream.nsv

The semicolon and stream name + nsv designates this stream as video - not audio.

You will need to create a different php script for video and audio stations - as each media method requires different information for playback.


For audio only streams you may be able to use IP + port number - without using a stream name plus encoder method ( mp3 or aac ), i am not sure about that though.

Jeeper One 29th July 2006 15:09

Hi everyone:

While we're on this subject (but not to hijack it :D), are we to understand that if you set the stream to be best viewed via Internet Explorer, you can use any audio and video codec INCLUDING x264 and AAC+ with the RaveTrax ActiveX viewer provided that you make the obvious changes i.e. like the following...

code:
<embed>
<object CLASSID="clsid:C5E28B9D-0A68-4B50-94E9-E8F6B4697516" WIDTH=352 HEIGHT=288 BORDER=0

codebase="http://www.nullsoft.com/nsv/embed/nsvplayx_x264_aac.cab#Version=-1,-1,-1,-1" id="nsvplayx">
<param NAME="Location" VALUE="http://127.0.0.1:8040;stream.nsv">
<embed type="application/x-nsv-x264-aac" width=352 height=288 codebase="http://www.nullsoft.com/nsv/embed/nsvmoz_x264_aac.xpi" location="http://127.0.0.1:8040;stream.nsv/">
</embed>
</object>

Would that work? If so, you can bet I'll change my Ham videos over to x264/AAC+ ASAP! :D

Cheers :D

Pat (a.k.a. Jeeper One)

Smelter 29th July 2006 17:50

Absolutly.
My old php script had a spelling error that caused a cab to not install, so a format was unavailabe. I never noticed because it was already in my browser. Somebody at php nuke pointed it out.

Inedible Bulk 29th July 2006 17:57

Quote:

Originally posted by Jeeper One
Hi everyone:

While we're on this subject (but not to hijack it :D), are we to understand that if you set the stream to be best viewed via Internet Explorer, you can use any audio and video codec INCLUDING x264 and AAC+ with the RaveTrax ActiveX viewer provided that you make the obvious changes i.e. like the following...

code:
<embed>
<object CLASSID="clsid:C5E28B9D-0A68-4B50-94E9-E8F6B4697516" WIDTH=352 HEIGHT=288 BORDER=0
codebase="http://www.nullsoft.com/nsv/embed/nsvplayx_x264_aac.cab#Version=-1,-1,-1,-1" id="nsvplayx">
<param NAME="Location" VALUE="http://127.0.0.1:8040;stream.nsv">
<embed type="application/x-nsv-x264-aac" width=352 height=288
codebase="http://www.nullsoft.com/nsv/embed/nsvmoz_x264_aac.xpi" location="http://127.0.0.1:8040;stream.nsv/">
</embed>
</object>

Would that work? If so, you can bet I'll change my Ham videos over to x264/AAC+ ASAP! :D

Cheers :D

Pat (a.k.a. Jeeper One)

please stop with your page widening faggot

john@ROCKNTV1 29th July 2006 22:01

word wrap
 
word wrap



any ways.....because i am an html idiot.....:tinfoil:

my first few attempts at getting RAVAS player to work was tricky.....
the links i refer to for my show have been put up by sites
without my consent....dont know if it hurts me at this point
any way, but non the less they work with video.I have used these links to ship visiters to my show mostley because my dot com is still waiting for me to make a page......argh idiot
MY first reaction to your post was an encoding issue,but adding the correct urls is a major plus in getting it to work......not sacastic.

while we are on rava's
CAn any one explain the allowed usage of the rava- aol script.



john :tinfoil: :tinfoil:

sankt 30th July 2006 01:42

Quote:

INCLUDING x264
Jeeper, where did you get that information from ?

AmpX never supported the H.264 video codec.

Smelter 30th July 2006 02:08

I thought a page will support any format you can provide the codebase for.

hhb 30th July 2006 04:46

Active X Player codec support
 
Back when I was fiddling with the two Active X NSV webpage player choices, this is how it worked:

NSV Active X -- will play mp3/AAC raw, VP3 to VP6.1

Ampx Active X -- will play everything NSV will play and also VP6.2 and AAC+. If either plays x264, like the Winamp software does, that's a surprise. Don't think they do.

hhb

sankt 30th July 2006 13:52

Nullsoft / AOL has never implimented support of the H.264 video codec for the NSV ActiveX player / NSV Mozilla XPI plugin player or the AmpX player.

Jeeper One 30th July 2006 17:24

Hi everyone:
Quote:

Originally posted by Inedible Bulk
please stop with your page widening faggot
That wasn't me. It was the board that did that. I just simply inserted the code into my post. What the board software or your browser does with it is simply out of my hands as that's beyond my control.

In any case, it wasn't intentional on my part. To be honest, I don't like it either, but I don't see how I can correct it (especially now since it's been over 24 hours since I posted it).

Perhaps one of the mods can somehow straighten it up whereas it looks halfway decent and doesn't widen the page?

Cheers :D

Pat (a.k.a. Jeeper One)

Jeeper One 30th July 2006 17:33

Hi everyone:
Quote:

Originally posted by sankt
Jeeper, where did you get that information from ?
I didn't. That's why I asked.
Quote:

AmpX never supported the H.264 video codec.
Thanks for the clarification. :D

Looks like I'll just hafta direct people to the external Winamp or VLC Player (If I don't use Rockouthippie's now-old code) and provide links where my site visitors can download the x264 codec then 'cause that codec just does wonders with some of the vids I've got in order to make them look presentable (Most were transcoded from low bitrate Windows Media or RealVideo formats using the SUPER © Batch Windows Media Converter or the MMConvert program. Google them to download them). :D

Cheers :D

Jeeper One 30th July 2006 18:59

Re: word wrap
 
Hi everyone:
Quote:

Originally posted by john@ROCKNTV1
word wrap
The problem isn't on my end. With the exception of the one above, all my posts wrap just like everyone else's posts do.

Anyways...Back to the topic at hand.... :D

Cheers :D

Pat (a.k.a. Jeeper One)

Inedible Bulk 30th July 2006 20:38

Quote:

Originally posted by Jeeper One
Hi everyone:That wasn't me. It was the board that did that. I just simply inserted the code into my post. What the board software or your browser does with it is simply out of my hands as that's beyond my control.
Sorry you use a shitty browser. Gecko based browsers and others that support "nobr" read the board's "don't word wrap this code" as such. This is so that it doesn't break at the wrong spot. However, with HTML, you can insert breaks between the <>tags and it won't cause a problem. You could have easily done that and stopped the page widening.

http://en.wikipedia.org/wiki/Page_widening

But yeah, the forum software itself is also to blame, mainly because for some dumb reason everything is centered instead of left aligned AND split (each post as it's own table or div). If it was left aligned your post would be wide, but I wouldn't have to horizontal scroll to read other peoples posts, just yours.

Of course, I will now assume you don't want people to put about 10 seconds of effort into overcoming inefficiencies in forum software (i actually quoted you and edited your code so you could copy it and put it into your post, or at least follow it as a guide, to unwiden the page), and will try to make things inconvenient for you if you need something.

Quote:

Originally posted by Jeeper One
Hi everyone:The problem isn't on my end. With the exception of the one above, all my posts wrap just like everyone else's posts do.

Anyways...Back to the topic at hand.... :D

Cheers :D

Pat (a.k.a. Jeeper One) [/B]
Shit in code tags doesn't wrap.

Jeeper One 31st July 2006 03:21

Hi everyone:

Well apparently you seem to be the only one complaining about it. Maybe you should look at your own browser and/or browser settings before complaining about anyone else's.

I mean think about it. Out of all the people who post to and read these boards, the only person who seems to have problems reading them is YOU!!

Dontcha think that seems just a little suspicious?

True, part of the blame DOES fall on the board software being used and it's also true that it's in need of some serious upgrading (I know of some freebie board sites that use newer versions of phpbb that this!), but do the rest of us a favor before you respond. CHECK YOUR OWN BROWSER & ITS SETTINGS.

Now can we PLEASE get back to the subject at hand????

Cheers :D

john@ROCKNTV1 3rd August 2006 22:01

:D ampx
sorry my ears were ringing

darkstar2002c 6th August 2006 02:51

Quote:

Originally posted by newborn
No one else has attempted video at this stage that I know of.
What exactly are you doing that is so revolutionary?


All times are GMT. The time now is 20:48.

Copyright © 1999 - 2010 Nullsoft. All Rights Reserved.