[ home / board list / faq / random / create / bans / search / manage / irc ] [ ]

/hebe/ - Girls

Read the board rules before posting.

Catalog

See 8chan's new software in development (discuss) (help out)
Infinity Next Beta period has started, click here for info or go directly to beta.8ch.net
Name
Email
Subject
Comment *
File
* = required field[▶ Show post options & limits]
Confused? See the FAQ.
Embed
(replaces files and can be used instead)
Oekaki
Show oekaki applet
(replaces files and can be used instead)
Options
Password (For file and post deletion.)

Allowed file types:jpg, jpeg, gif, png, webm, mp4
Max filesize is 8 MB.
Max image dimensions are 10000 x 10000.
You may upload 5 per post.


BOARD RULES - HEBE NEXT - CUTE GIRLS

File: 1448564472726-0.png (66.21 KB, 955x490, 191:98, younow1.png)

File: 1448564472728-1.png (175.55 KB, 500x500, 1:1, younow2.png)

File: 1448564472731-2.png (1.13 MB, 1166x876, 583:438, younow3.png)

File: 1448564472734-3.png (51.5 KB, 620x476, 155:119, younow4.png)

 No.93743

Is there any programs that can be used to easily record younow streams / download past broadcasts?

I'm currently writing one in java and thought I could share it with you guys if there is use for it. It will probably only work in windows since I'm using the rtmpdump windows binary for recoding/downloading.

Current features:

-Start automatically recording when user goes live (nice if the user deletes broadcasts)

-Download past broadcasts

-Browse multiple tags at once and sort them by views/likes/account creation time

-Viewing some user info that might be useful

 No.93759

fail no dl link


 No.93778

Link?


 No.93779

>>93743

>Is there any programs that can be used to easily record younow streams / download past broadcasts?

VSO Downloader

Younow is dead so it doesn't matter anymore


 No.93784

Here is the program. It should start from the jar but if not try the start.bat. I tested the download with chrome at it didn't let me but worked on firefox after unblocking. It requires java 8

https://anonfiles.com/file/be389f88801751c262dfaaafbdb88c61


 No.93810

YouTube embed. Click thumbnail to play.

Yes, there are.

>Viewing some user info that might be useful

This one does it: http://www.lachschon.de/forum/thread/show/51938/ (but I don't know if we are talking about the same useful info)


 No.93812

It looks pretty. Can I see the source?


 No.93825

File: 1448600497260.jpg (111.03 KB, 768x758, 384:379, aint clicking.jpg)

>mysterious homebrew java program on pedo board


 No.93844


 No.93861

>>93784

anonfiles just goes to download, but nothing else happens, upload to a different host,

Also JewNow banned me for telling a nigger to go home (back to africa).

He was saying how he is fucking this white girl and all up in her pussy. I told him gtfo and go back to africa. You now is run by jews, just like most media sites. See protocols of zion for more info, its their blueprint


 No.93862

>>93784

anonfiles just goes to download, but nothing else happens, upload to a different host,

Also JewNow banned me for telling a nigger to go home (back to africa).

He was saying how he is fucking this white girl and all up in her pussy. I told him gtfo and go back to africa. You now is run by jews, just like most media sites. See protocols of zion for more info, its their blueprint


 No.93870

Im hesitant to respond to this, but, this java tool you have was originally a shell script. You are missing very key elements like wget.exe and xidel.exe along with the scripts that go with them, As these scripts require manual inputs, im unsure how the data is initepreted.


 No.93871

@echo off

setlocal EnableDelayedExpansion

title YouNow video downloader v1.0

echo +--------------------------------------------+

echo ^| YouNow video downloader v1.0 ^|

echo +--------------------------------------------+

echo ^| This script helps you download ^|

echo ^| YouNow.com broadcasts and live streams ^|

echo +--------------------------------------------+

echo ^| Made by @nikisdro [ 2015-07-25 ] ^|

echo +--------------------------------------------+

echo.

echo Paste broadcast URL or username below (right click - Paste) and press Enter

echo.

echo Example 1: https://www.younow.com/d10nne_

echo.

echo Example 2: d10nne_

if exist "_temp" (

rd /s /q _temp 2>NUL

md _temp 2>NUL

) else md _temp

if not exist "videos" md videos

cd _bin

set num1=1

set num2=1

:begin

set start=0

echo.

echo URL or username (leave blank to quit):

set /p url= || goto end

echo.

set url_="%url%"

if not %url_:younow.com=% == %url_% (

goto normal

) else (

goto username

)

:normal

for /f "tokens=3,4,5 delims=/" %%a in ("%url%") do (

set user=%%a

set broadcast_id=%%b

set user_id=%%c

)

start /min down.bat %user% %user_id% %broadcast_id% b%num1%

echo - OK^^! Started downloading in a separate window.

set /a num1+=1

goto begin

:username

wget -q http://www.younow.com/php/api/broadcast/info/user=%url% -O ../_temp/%url%.txt

for /f %%a in ('xidel -q ../_temp/%url%.txt -e "($json).userId"') do set user_id=%%a

for /f %%a in ('xidel -q ../_temp/%url%.txt -e "($json).errorCode"') do set error=%%a

if %error%==0 (

goto live

) else (

goto list

)

:live

set input=

set /p input="[LIVE] %url% is broadcasting now^! Start recording (y/n)? "

if "%input%"=="" (

del /q "../_temp/%url%*.txt" 2>NUL

goto begin

)

if "%input%"=="y" (

goto liveyes

) else (

goto list

)

:liveyes

for /f %%a in ('xidel -q ../_temp/%url%.txt -e "($json).broadcastId"') do set broadcast_id=%%a

start /min live.bat %url% %user_id% %broadcast_id%

echo.

echo - OK^^! Started recording in a separate window.

goto continue

:list

wget -q http://www.younow.com/php/api/post/getBroadcasts/startFrom=%start%/channelId=%user_id% -O ../_temp/%url%_json.txt

xidel -q -e '($json).posts().media.broadcast/join((videoAvailable,broadcastId,broadcastLengthMin,ddateAired),"-")' ../_temp/%url%_json.txt>../_temp/%url%_list.txt

set idx=1

set videos=

set all=

echo You can download these broadcasts:

echo.

for /f "tokens=1,2,3,4 delims=-" %%a in (../_temp/%url%_list.txt) do (

if %%a==1 (

echo !idx!. %%d [%%c]

set videos[!idx!]=%%b

set all=!all!!idx!,

)

set /a idx+=1

)

if "%all%"=="" (

echo - There's nothing to show.

del /q "../_temp/%url%*.txt" 2>NUL

goto begin

)

set input=

echo.

echo Type comma separated numbers, "all" to download everything,

set /p input=""n" to list next 10 broadcasts or leave blank to return: "

if "%input%"=="" (

del /q "../_temp/%url%*.txt" 2>NUL

goto begin

)

if "%input%"=="n" (

set /a start+=10

echo.

goto list

)

if "%input%"=="all" (

set input=%all%

)

echo.

for %%a in (%input%) do (

start /min down.bat %url% %user_id% !videos[%%a]! !num2!

echo - OK^^! Started downloading in a separate window.

set /a num2+=1

)

:continue

set input=

echo.

set /p input="Continue working with %url% (y/n)? "

if "%input%"=="y" (

echo.

goto list

) else (

del /q "../_temp/%url%*.txt" 2>NUL

goto begin

)

:end

echo.

pause


 No.93894

In order for YouNow to be competitive you'd have to make something that can batch download everything in a low quality like 144p and that keeps a record of what it's already downloaded like War Room does for Youtube


 No.93931

maybe you can share the da_clothes_ records?

seems to be gone

thx


 No.93945

Is there any good place to find old YN broadcasts? The hipchats on /wx/ go away too quickly


 No.94301

File: 1448813043785.png (231.38 KB, 570x475, 6:5, Screenshot_2015-11-29-09-5….png)

>>93945

Motherless


 No.94310

it should be "are there any programs?" use proper English.


 No.94349

>>93945

There are some forums out there.


 No.96683

Are you still working on this?




[Return][Go to top][Catalog][Post a Reply]
[]
[ home / board list / faq / random / create / bans / search / manage / irc ] [ ]