Tuesday, July 30, 2019

国内外相册和网盘服务

国内的服务真不靠谱,以前把相片等重要资料存放在号称永不收费的金山网盘上,金山网盘突然就被清理关闭了。又拍网,所有相片都没有了。导致泰山相片丢失,2012年回老家的相片丢失。360网盘,一段时间不进去,再进去的时候,所有资料都被清理的干干净净。百度网盘都算好的了,毕竟东西都还在。虽然有些东西允许上传,不允许下载。

相比而言,国外服务商更靠谱更有信誉。以前存在google picasa的相片,哪怕picasa关闭,google也自动把相片转到了google相册里。flick虽然改为收费,至少续费/缴费后登录仍然可以看到以前上传的相片。虽然不续费不让预览相片,续费之后下载相片也很不方便。

苹果的相册目前感觉最满意,但它不支持语音备忘录,语音备忘录可以导入但无法播放,还是把语音备忘录放到icloud files合适。

Sunday, July 21, 2019

IPTV for apple TV (and others)

apple TV has an app iPlayTV which costs C$3.99, it's worth to buy but you have to find your own high quality IPTV sources.

Github has an open source project https://github.com/freearhey/iptv , also there's a nice Fluxus.tv (https://fluxustv.blogspot.com/p/iptv.html)

After I clone Github and run "npm run test --country=uk " I got an error complaining module "playlist-parser" missed and the error log is:
11 silly lifecycle iptv@~test: Returned: code: 1  signal: null
12 info lifecycle iptv@~test: Failed to exec test script
13 verbose stack Error: iptv@ test: `node test/index.js`
13 verbose stack Exit status 1
13 verbose stack     at EventEmitter.<anonymous> (C:\Program Files\nodejs\node_modules\npm\node_modules\npm-lifecycle\index.js:301:16)
13 verbose stack     at EventEmitter.emit (events.js:189:13)
13 verbose stack     at ChildProcess.<anonymous> (C:\Program Files\nodejs\node_modules\npm\node_modules\npm-lifecycle\lib\spawn.js:55:14)
13 verbose stack     at ChildProcess.emit (events.js:189:13)
13 verbose stack     at maybeClose (internal/child_process.js:970:16)
13 verbose stack     at Process.ChildProcess._handle.onexit (internal/child_process.js:259:5)
14 verbose pkgid iptv@

After checking package.json, and issue the below:
        npm install playlist-parser --save-dev

I'm able to run "npm run test --country=uk" successfully.