enricodias4654 said:
pilot830 said:
I feel like there's lots missing from this script, compared to a rival script, I hope more things are going to be added
Do you mean the xfilesharing? It's old and the code is a mess. Yetishare is still better than it.
well im all team yetishare, so i didn't want to mention anything by name.. i only said that becuase as mentioned in this thread, theres many things missing from the script. i see how on the other scripts, they seem to have some things yetishare doesnt, such as
- for the rewards, they have this already built into the script or plugin for rewards http://i.imgur.com/D2IzEE1.png the whole reward mode stuff..
with yetishare, someone would have to custom code it, or id have to go and pay someone to do it...
- how can i do this in yetishare?
"Downloads/Streams are counted up to 3 times every 24 hours per IP." -- doesnt appear possible
"Rewards arent counted strictly per view. Its depending on the conversion of advertisements on player ADS" -- not possible
"Any non browser downloads are counted by factor 0.1" -- doesnta ppear possible
I dont expect all of that to be in the script, im sure some of this is just way too custom, but would be nice to seee more stuff in the script
my biggest gripes at the moment are zero load balancing within the script, and the whole video buffering issue:
- on other scripts, when you load a video using
chrome, the video buffers as you play, and or if you pause, it continues to buffer. this is important for people who have slower connections or are far away from the server.. so it helps that the video buffers some, so they can pause, let it buffer some, then play and watch whats already buffered while the rest continues to buffer. right now when you view a video on a site thats powered by yetishare using chrome , the video does not buffer, only a small chunk ahead of where you are, that's it.. im not entirely sure why this is, either somethign to do with the headers, or the fact that the other scripts possibly (not 100% sure), load the mp4 right off the web server.. in a dir.. like this site, thevideo.me , they use xfs, and i see on the source code for their video, it says something like
{"file":"https://d8584.thevideo.me:8777/osjta56uz2oammfvg6rveg4qou5q7j6p63y6taujhpalrh4x52p6fwj7xesj26tppnoy5lsbxsevi7jnb5in4lazol3dcjcavatqsoxh44glwyhvt64boauqrtebf6cfu32goj56tyw5cguvomiybx6oturo5m5fyhh32bibmzomfawfekmklxz3vhjihvicqa3la5bdiix56trz25izcdfdh4dtvpe3v6negsfpmzboraq2mllfy2k652melsst7zhey7ucpy3qa2gsaznicysgenqa/v.mp4","label":"360p"}]
so it appears that they load the video out of a directory, that has random hash or randomization to it.. and then the v.mp4 is the actual file.. so i think by loading the video off the web server, the video buffers.
but with yetishare, its loaded not off the webserver, the file is hidden in the files/localfilepath directory, through a download token URL
last i checked you said that you dont use yetishare for video, so you may be unaware of these video related issues
I haven't heard back from yetishare about this issue. this is not a jwplayer or videojs issue. I've now started the process of hiring a guy to fix the problem, hopefully he does, then ill be all set.. What sucks is, I would love to rather pay adam to do this.. and then he could even incorporate the fix into the script for everyone else.. im fine with that.. But i guess hes too busy or something.. which makes me feel like, he should just hire people, then he can afford to take on custom jobs like i just said.. and he could make money from that, and everyone benefits. but maybe its all easier said than done
i have an idea with the video thing though, im getting more into php, but not knowledgable enough to fix anything major, hence why i hired someone to do it.. but for fun i think i might try
- in the media player ,most likely _append file download bottom.php, get the downlaod token value
- use php to create a directory in public_html/ and the name of the DIR will be the download token
- then in that directory, use php to symlink the file into that DIR,
- then change the download media URL value (where jwplayer is, for the file
, to a url that is http://file.server/[download_token_dir_name]/file.mp4
that might work and things would work the same
Only thing id have to figure out then is, when the downlaod token would expire as per usual, id have to get it so that it removes that directory.. Just think i might try this for fun to get more experience in php