Free Snaz [Deleted]

Status
Not open for further replies.

Yachak

Member
Thank you for the support !

(The latest Snaz as of today is 1.11.1.4)

1.12.0.0 will come soon with a new feature "Dynamic Files"

Kind regards
 

Yachak

Member
Sure @Francisco Vitorino,

You will be able to pull any online source into snaz, and create a textfile (name can be chosen) for it. The power lies in the content that you make or find online.

There is no limit on the amount of files you can pull (but it will have a limit of minimum 20 seconds before every pull and duplication of pull addresses are not allowed - to overcome abuse).

E.g. : http://jimmyappelt.be/hosted/twitch/status.php?channel=CaptCoach

Will return the status of the channel named Captcoach.

We currently are beta testing
 

Yachak

Member
Yachak updated Snaz with a new update entry:

Version 1.12.0.0

=== Version 1.12.0.0

+ Introducing a new feature "Dynamic Files", you now have the
ability to create a textfile by choice and link it to any online source.
Endless possibilities to create as long as you have or make the online
source you need or like. (To overcome abuse it's not allowed to request
more then one excact same adress and has a minimum of 20 seconds
timespan before the next update starts)
+ Added option to have a confirmation box before Exiting (Off by default)
in options menu...

Read the rest of this update entry...
 
Last edited:

Lucas83

New Member
@Yachak this is great tool, today I started to use it, it's easy to configure and understand, so I think I might stop using other apps since here is almost everything I need. I just have few ideas:

Followers train - countdown starts from a specific number to 0 - when program detects that number of follower changed.
Session followers - how many new followers since program is running.
Viewer count shows information "Channel is not live." when not yet refreshed, so maybe it should shows "0" as default - it could be easier to integrate into OBS.

I also posted these ideas at github.

And the question - do you share php code of viewers.php, followers.php somewhere?
 
Not sure if you want to implement this but can there be a possibility for you to add a Change Title and Game option inside Twitch Viewers... as in to us manually change the stream title(status) and game on the fly with your software?

Maybe make the Game/Status text box area editable with an update button under the Status word
 

Yachak

Member
@Yachak
Viewer count shows information "Channel is not live." when not yet refreshed, so maybe it should shows "0" as default - it could be easier to integrate into OBS.

I also posted these ideas at github.

And the question - do you share php code of viewers.php, followers.php somewhere?

Yes i could change the scripts to do so that i host. But of coarse the idea is to make them for your own.

A PHP file like game.php will look like:
PHP:
<?php

$online = false;
$channel = $_GET['channel'];
$dataArray = json_decode(@file_get_contents('https://api.twitch.tv/kraken/streams/' . $channel), true);

if ($dataArray['stream'] != null)
{
    $online = true;
    $game = $dataArray['stream']['channel']['game'];
}

if($online)
{
    echo $game;
}
else
{
    echo "Channel is not live.";
}
?>

Requested with: http://YOURSITE.COM/game.php?channel=CHANNELNAME

Easy enough ;)
 
Would be happy to host your site if you like, let me know..

Also could you maybe have windows remember where they opened as now they always open in the center and 'live on stream..' ;)
 

Yachak

Member
Would be happy to host your site if you like, let me know..

Also could you maybe have windows remember where they opened as now they always open in the center and 'live on stream..' ;)

Yeah its suspended because of to much traffic :)

Which windows do you mean ? Snaz itself should normally remember the last used window position.
 
I mean a popup, for instance for changing a text. It always pops up in the center of the screen, would be nice if it comes up in the center of the open snaz main windows for instance..

I have unlimited hosting so again, be happy to help you out, let me know..
 

Yachak

Member
Yachak updated Snaz with a new update entry:

1.12.0.1

(At the moment of posting - my host is suspended, there is no auto update untill it is back up) Download it manualy here: https://github.com/JimmyAppelt/Snaz/releases/download/1.12.0.1/SnazSetup.exe

=== Version 1.12.0.1

! Mandatory update (Please do not wait for updating - do it a.s.a.p.)!
+ Dynamic files now supports images (if your response is an image link the
the image will be saved to the "DynamicImageFiles" folder
+ You can...

Read the rest of this update entry...
 

Yachak

Member
Yachak updated Snaz with a new update entry:

1.12.1.0

=== Version 1.12.1.0

+ Coded a new settings pane (File > Settings) and removed old system,
making settings easier to find and easier to integrate new settings.
+ Added support for Winamp (Playing Now)
* If a music file only has Song info, it will now be displayed (for
foobar2000 and winamp)
+ Dynamic files now will only write when new content is detected
* Reset chrono up on each start is moved to the new settings instead of
the main form (All settings that interact with the specific module...

Read the rest of this update entry...
 

Yachak

Member
Yachak updated Snaz with a new update entry:

1.12.2.0

=== Version 1.12.2.0

+ Added remote update Twitch Game/Status, combined with game name lists
and able to make predefined statuses. (To enable: Authorize Snaz first
in File>Settings>Twitch) (On request issue #20)
* Current game lists are PC, PS3, PS4, Wii, Wii U, Xbox 360 and Custom.
Where "Custom" is a list where you can add or remove predefined names
by hand in ~/Data/game-custom.json)
+ Added option to Playing Now to show default text when not playing.
(Note: for spotify this...

Read the rest of this update entry...
 
Status
Not open for further replies.
Top