Adult Script Pro Community Forums

The forum is here for legacy reasons. No new posts will be created. User registration is disabled! If you have any questions, please email us or check https://www.adultscriptpro.com for more details!

You are not logged in.

#1 2012-08-23 01:23:01

Nuevolab
Member
Registered: 2012-08-01
Posts: 189

Few questions from Nuevolab

While developing Nuevoplayer integration, then doing first install on live website I found few things that I wish to ask Symtab or whoever may know it.

1.
AdultScript version I have has option in Admin to preselect player (Flow, JW + added Nuevoplayer)
But in clients script I didn't find such option. Also client script doesn' have option for s3 streaming.
I wish to know which version of the adult script is current one.

2.
When uploaded video is of high quality it is converted to h264 MP4 and later plays as "HD" video.
My question is whether normal FLV video is converted and stored too then.
I couldn't check it as upload+convert doesnt' work on my test installation due to my server setup (used for other script and site)

3.
I found in players config code, that if RTMP streaming not used - always HTTP type of streaming is set.
What about progressive method? It's not cosidered in any place, even if selected in Admin, always HTTP is used.

Possibly I will have more questions later.

Kind regards.

Last edited by Nuevolab (2012-08-23 01:25:10)

Offline

#2 2012-08-23 07:03:28

symtab
Administrator
Registered: 2010-08-23
Posts: 7,501
Website

Re: Few questions from Nuevolab

1. You need version >= 1.0 to use these functions.
2. Yes, both FLV and MP4 are created (if you uploaded FLV, then no MP4 files is created, if you upload MP4, then no FLV file is created, both options can be disabled/enabled from admin).
3. Progressive method is the HTTP one. Its the default streaming method. There is progressive (anything that downloads the file, any web server), pseudostreaming (lighttpd/apache/nginx, all support this, but require additional modules) and rtmp (expensive, but good for premium sites, nobody can download the videos).

Let me know if you got any further questions.


Adult Scripts: Adult Script Pro - Adult Search Script
Adult Advertising/Traffic: Plug Rush - EXOClick - PopAds

Offline

#3 2012-08-23 11:10:00

Nuevolab
Member
Registered: 2012-08-01
Posts: 189

Re: Few questions from Nuevolab

symtab wrote:

3. Progressive method is the HTTP one.

I know well what streaming types can be, how couldn't I.

But what I found in players config files:
Flow player

		<?php if (is_array($video_url)): ?>
		'url': '<?php echo $video_url['file']; ?>',
		'provider': 'rtmp',
		<?php else: ?>
		'url': '<?php echo $video_url; ?>',
		'provider': 'pseudostreaming',
		<?php endif; ?>

This shows clearly thattype of streaming can only be "rtmp" or "pseudostreaming" - no 'progressive' option.

JWPlayer:

	<?php if (is_array($video_url)): ?>
	<file><?php echo $video_url['file']; ?></file>
	<provider>rtmp</provider>
	<streamer><?php echo $video_url['stream']; ?></streamer>
	<?php else: ?>
	<file><?php echo $video_url; ?></file>
	<provider>http</provider>
	<?php endif; ?>

Again there are 2 streaming options: 'rtmp' and 'http',
in case of JWPlayer provider 'http' means http pseudostreaming. Same for Nuevoplayer.
No option for progressive streaming.

I think that when rtmp or psedudostreaming not defined - provider flashvar should not be set at all.
Am I right? Nuevoplayer differs little bit in playing progressively and with pseudostream, and this is why I ask.

Another doubt is for RTMP streaming. if (is_array($video_url))  - does it mean that this can be array of file to play + RTMP streamer URL?

--------------------

As you stated - it's possible that there are both: 'flv' and 'mp4' video available (in different folders).
So I think that I could add option to my player so it could switch between HD/SD. Of course first it requires to check if FLV exists.
I know that problem can occur if multiple servers used. But if files on same server - it's easy to check.

Nuevoplayer has option to stream HD content first, and have option to switch between HD and SD (and back)
What do you think about it?

Last edited by Nuevolab (2012-08-25 00:08:47)

Offline

Board footer

Powered by FluxBB