Git Product home page Git Product logo

Comments (17)

JonathanAaron avatar JonathanAaron commented on June 14, 2024

Did you clone the repo from github or did you just try to install it via npm?

from castnow.

adefaria avatar adefaria commented on June 14, 2024

From [email protected] Thu Jan 1 09:39:14 2015
Return-Path: [email protected]
X-Original-To: [email protected]
Delivered-To: [email protected]
Received: from github-smtp2b-ext-cp1-prd.iad.github.net (github-smtp2-ext8.iad.github.net [192.30.252.199])
(using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
(No client certificate requested)
by defaria.com (Postfix) with ESMTPS id C2D221B21D68
for [email protected]; Thu, 1 Jan 2015 09:39:14 -0800 (PST)
Date: Thu, 01 Jan 2015 09:39:13 -0800
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=github.com;
s=pf2014; t=1420133953;
bh=TW27jGQjp7HP4/X2aTSWroEn+ykLOJGjy1c1lJ/b7EA=;
h=From:Reply-To:To:Cc:In-Reply-To:References:Subject:List-ID:
List-Archive:List-Post:List-Unsubscribe:From;
b=WszBNLfMrXBPUyf2aZGLtTXNtjRRB9ZXP4cN3E3XHAkKPjjlhDJjOHQhNRCJxp5+I
ZIHaYO+eG/dztim1g6ujrJKBwRCMREqwNJKZT+7nU3eaY+N9mhDcB7xcaRunDBIDSz
W4ohU4SuZjmg72yMJ+JBzFj5CTJos7UwcrcAdyPk=
From: JonathanAaron [email protected]
Reply-To: xat/castnow [email protected]
To: xat/castnow [email protected]
Cc: Andrew DeFaria [email protected]
Message-ID: xat/castnow/issues/50/[email protected]
In-Reply-To: xat/castnow/issues/[email protected]
References: xat/castnow/issues/[email protected]
Subject: Re: [castnow] Doesn't do anything. (#50)
Mime-Version: 1.0
Content-Type: multipart/alternative;
boundary="--==_mimepart_54a586419c42c_31c13f94bf1612bc19887a";
charset=UTF-8
Content-Transfer-Encoding: 7bit
Precedence: list
X-GitHub-Sender: JonathanAaron
X-GitHub-Recipient: adefaria
X-GitHub-Reason: author
List-ID: xat/castnow <castnow.xat.github.com>
List-Archive: https://github.com/xat/castnow
List-Post: mailto:[email protected]
List-Unsubscribe: mailto:unsub+0029141f3259ea7a5715a8f1204fcb417158cbcf71cc947d92cf0000000110bd484192a169ce032c1dd1@reply.github.com,
https://github.com/notifications/unsubscribe/ACkUH_eNijaj-RFNeGknQqGbevJfhomUks5ndX3BgaJpZM4DNot4
X-Auto-Response-Suppress: All
X-GitHub-Recipient-Address: [email protected]

----==_mimepart_54a586419c42c_31c13f94bf1612bc19887a
Content-Type: text/plain;
charset=UTF-8
Content-Transfer-Encoding: 7bit

Did you clone the repo from github or did you just try to install it via npm?


Reply to this email directly or view it on GitHub:
#50 (comment)
----==_mimepart_54a586419c42c_31c13f94bf1612bc19887a
Content-Type: text/html;
charset=UTF-8
Content-Transfer-Encoding: 7bit

Did you clone the repo from github or did you just try to install it via npm?


Reply to this email directly or view it on GitHub.

----==_mimepart_54a586419c42c_31c13f94bf1612bc19887a--

from castnow.

materemias avatar materemias commented on June 14, 2024

I have the same issue, tried both ways

from castnow.

JonathanAaron avatar JonathanAaron commented on June 14, 2024

You have to do both, clone it via git, then install it with npm package manager, there is a great guide on lifehacker.com.

from castnow.

materemias avatar materemias commented on June 14, 2024

just tried it, it plays local media well, but cannot stream torrent, where peerflix excels

from castnow.

xat avatar xat commented on June 14, 2024

Sorry guys, still on holiday with no chromecast-able TV and nearly no internet. Will be back next week.
What always helps if you paste the DEBUG output in here.

from castnow.

JonathanAaron avatar JonathanAaron commented on June 14, 2024

xat - How do you get the debug out put? --verbose?

ratson - Are you behind a vpn, cause I was unable to stream torrent/magnet links behind a vpn.

from castnow.

materemias avatar materemias commented on June 14, 2024

nope, I was trying it at home, regular wifi connection, peerflix, popcorn
time, chromecast all working.

On Wed, Jan 7, 2015 at 12:08 PM, JonathanAaron [email protected]
wrote:

xat - How do you get the debug out put? --verbose?

ratson - Are you behind a vpn, cause I was unable to stream torrent/magnet
links behind a vpn.

Reply to this email directly or view it on GitHub
#50 (comment).

from castnow.

mliikanen avatar mliikanen commented on June 14, 2024

Seems to me that there's something wrong with nodejs on Ubuntu at the moment. I just updated my Ubuntu (apt-get upgrade), and castnow broke there exactly with the described way. Node isn't even responding to --version:

$ castnow --help
$ cat helloworld.js
http.createServer(function (req, res) {
  res.writeHead(200, {'Content-Type': 'text/plain'});
  res.end('Hello World\n');
    }).listen(1337, '127.0.0.1');
console.log('Server running at http://127.0.0.1:1337/');
$ node helloworld.js
$ node --version
$ dpkg -s node
Package: node
Status: install ok installed
Priority: extra
Section: oldlibs
Installed-Size: 38
Maintainer: Ubuntu Developers <[email protected]>
Architecture: all
Version: 0.3.2-7.4
Depends: ax25-node
Conflicts: nodejs-legacy
Description: Amateur Packet Radio Node program (transitional package)
 The existing node package has been renamed to ax25-node. This transitional
 package exists to ease the upgrade path for existing users.
Original-Maintainer: Debian Hamradio Maintainers <[email protected]>

Nodejs (and thus also castnow) is working fine on my OSX though.

Update: found an explanation and workaround (fix?) for Ubuntu
http://stackoverflow.com/a/25392896/3432809 gives an explanation for node not working.

As a workaround, either do as the stackoverflow suggests and create a symlink for node -> nodejs. Another option is to edit /usr/local/lib/node_modules/castnow/index.js so that hashbang makes it run with command 'nodejs' not 'node':

#!/usr/bin/env node

to

#!/usr/bin/env nodejs

from castnow.

xat avatar xat commented on June 14, 2024

@JonathanAaron
It's described in the README in the "Report Bugs" section howto enable the tebug output.

@adefaria
Does the solution posted by @mikkoliikanen solve your problem?

@ratson
Since at least localfiles works for you I think that your having a different issue. Can you open a new issue for your problem with a DEBUG dump?

from castnow.

adefaria avatar adefaria commented on June 14, 2024

Why don't you just make a real package for a simple install instead of all this odd npm and github cloning. I mean why can't I simply apt-get install castnow or perhaps a simple tar -xzf castnow.tar.gz, even if I need to do a configure/make install/etc...

Last thing I need to do is to start debugging somebody else's buggy and convoluted "install" process. I have a chromecast. It works well for me for quite some time. I was just hoping that this thing would cast Hulu videos (anybody know if it does?) so that I can be at my couch and on my cell phone using this castnow thing to pause and play, etc. instead of having to get up and walk over to my dining room, unlock my desktop and hit pause. To solve that problem is really not worth me having to install all kinds of other crap like npm and node and shit like that. Hell I'm not THAT lazy - I can get up, walk to the dinning room (about 3 steps really) and click the mouse to pause the video. I would like to be able to do it from my phone though...

from castnow.

xat avatar xat commented on June 14, 2024

@adefaria castnow is still under development. If you want something more robust, better wait until v1.0.
NPM is a widely used package manager in the JS world. And since castnow is build with JS I see no reason why not to use NPM :) You shouldn't need to clone the repo (unless you want to create a Pull Request or something).

castnow does not support Hulu and will not work on your phone. It's a commandline utility.

from castnow.

adefaria avatar adefaria commented on June 14, 2024

I see no reason to invent yet another package installer just because a
different programming language was used!

What I read was that castnow supports playing a video from a URL. Hulu's
videos have URL's. So why wouldn't it work?

And as for my phone, dude I can simply ssh into my desktop. Then I have
a terminal session on my phone controlling castnow running on my desktop.

On 01/10/2015 09:45 AM, Simon Kusterer wrote:

@adefaria https://github.com/adefaria castnow is still under
development. If you want something more robust, better wait until v1.0.
NPM is a widely used package manager in the JS world. And since
castnow is build with JS I see no reason why not to use NPM :) You
shouldn't need to clone the repo (unless you want to create a Pull
Request or something).

castnow does not support Hulu and will not work on your phone. It's a
commandline utility.


Reply to this email directly or view it on GitHub
#50 (comment).

Andrew DeFaria
http://defaria.com
If you can't be kind, at least have the decency to be vague.

from castnow.

xat avatar xat commented on June 14, 2024

@adefaria
Since you don't seem be interested anymore that this issue here gets solved I'll close it for now.

from castnow.

adefaria avatar adefaria commented on June 14, 2024

You're right - I'm not interested in debugging your code - I'm just interested in using it. Learn the difference.

from castnow.

xat avatar xat commented on June 14, 2024

;-)

from castnow.

mikerev avatar mikerev commented on June 14, 2024

This still exists btw.

from castnow.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.