View unanswered posts | View active topics It is currently Mon May 20, 2013 10:27 am



Reply to topic  [ 696 posts ]  Go to page Previous  1 ... 7, 8, 9, 10, 11, 12, 13 ... 70  Next
 PlayOn!X firmware (Optware friendly r4824) 
Author Message

Joined: Sat Feb 13, 2010 9:59 pm
Posts: 673
Location: Tilburg
Post Re: ACR-PV73100 v7.3.x.r4824 Playon!HD (Optware friendly)
mcstarter wrote:
@Mikka, Bug Report

When i shutdown the playon from the remote controller, the light switch to red but the playon is still running.
I can reach it from my network and also open the webcontroller. This was not so with the original image.

When i shutdown from InfoSite, the machine is realy shutdown. I cant open it from my remote controller.

Hope you will come with fix or a new release :)

Thanks a lot.


Thanks for reporting this. I've had this issue a long time ago (but it was with official firmware) and up to now still don't know what was the reason. Can you see any relation with extra tools, like transmission or vsftpd? If you stop them, and turn off POHD is it the same? Can you check if it's happening with original firmware now?

Just a personal guess: it's possible that Dvdplayer is crashing (not enough memory) or filesystem is not properly unmounted.


Thu Jan 06, 2011 2:15 pm
Profile

Joined: Thu Nov 19, 2009 4:43 pm
Posts: 142
Post Re: ACR-PV73100 v7.3.x.r4824 Playon!HD (Optware friendly)
mikka wrote:
If it's possible to mount in Windows, it should be possible to mount in Linux as well. I don't know which distribution you are using, AFAIK some of them are using read-only version of NTFS driver. This modified firmware doesn't change filesystem of your internal harddisk at all.

Well, yes, supposedly. It actually mounts, and rw, but when writing, it fails. I'm not saying it's your firmware, just that I've been able to do it with previous official versions. Perhaps it's a new fault on r4824 official...
mikka wrote:
About filling media player: you can use this trick: http://acryan.com/forums/viewtopic.php?p=67664&sid=56e449d551f910fddac424bd44d97fa4#p67664 to speed-up process.

Thanks! Haven't tried vsftp yet, as I actually disabled it in /usr/local/etc/optS, but will give it a try next time to check if I can improve from my regular 1.2MB/s.
Meanwhile, media restore has finished and at the same time I stress tested the machine: several ssh sessions, multiple scp sessions, local copies (from USB drive) and hard enough torrents (680kB/s limit) including some partial download verifications. Some times a simple ssh login could take several seconds...
NO CRASH! Hurra to ext3 filesystem! I guess I don't need to disable Dvdplayer... :)
I tried to use the built-in copy function to copy data from an USB attached NTFS disk to the internal filesystem -> immediate reboot. Could be excess load, but I didn't dare to try again withou load to confirm...

As for installing ssh, in case you're considering that in your next version, after installing your firmware:
1. # ipkg-opt install openssh
2. configure /opt/etc/openssh/sshd_config (enable root login, enable public key login, enable a banner, etc)
3. enable sshd at startup:
- # mount -o remount,rw /
- edit /etc/inetd.conf
- add "ssh stream tcp nowait root /opt/sbin/sshd sshd -i -f /opt/etc/openssh/sshd_config"
- you can also start sshd from /usr/local/etc/optS with "/opt/sbin/sshd -f /opt/etc/openssh/sshd_config", this could be simpler to implement in an installation script
- # reboot
4. if everything works fine, you can disable telnetd in inetd.conf
Still can't login with public key / private key authentication (it refuses to accept) but I'm sure it's a misconfig somewhere in /opt/etc/openssh/sshd_config

Any workaround for the <i> </i> tags in subtitles? Oh, sorry, you're not ACR tech support... ;)
I have one:
http://www.liamdelahunty.com/tips/linux_search_and_replace_multiple_files.php
# perl -pi -w -e 's/<i>//g;' *.srt
# perl -pi -w -e 's/<\/i>//g;' *.srt
# perl -pi -w -e 's/<b>//g;' *.srt
# perl -pi -w -e 's/<\/b>//g;' *.srt
I've tested it and it works. You need perl (do it from your PC). First do a backup of your srt subs...

Thanks Mikka!

_________________
Playon!HD Firmware r4824
Samsung SpinPoint F1 - 1 TB - SATA-300 (HD103UJ)
100Mbit/s wired Ethernet
Panasonic Viera P42G15 via HDMI
NAD receiver via Coaxial


Thu Jan 06, 2011 3:42 pm
Profile

Joined: Sat Oct 24, 2009 6:29 pm
Posts: 8937
Location: Netherlands
Post Re: ACR-PV73100 v7.3.x.r4824 Playon!HD (Optware friendly)
I tried it pretty cool fw.

but is it also possible to have a playondvr-hd optware friendly fw ? pv6120 ?

_________________
My latest music production released on 10-1-2012 !!!
http://www.youtube.com/watch?v=Kaagnvz3CAs
Playon HD1/HD2/HD3 and MIni series//DVR-HD/ESSENTIAL/VEOLO BLOG, Latest tips Tricks Unreleased Firmwares News and Tutorials !
HTTP://ACRYANFAQ.BLOGSPOT.COM


Thu Jan 06, 2011 3:43 pm
Profile

Joined: Sat Feb 13, 2010 9:59 pm
Posts: 673
Location: Tilburg
Post Re: ACR-PV73100 v7.3.x.r4824 Playon!HD (Optware friendly)
kawakinho wrote:
Any workaround for the <i> </i> tags in subtitles? Oh, sorry, you're not ACR tech support... ;)
I have one:
http://www.liamdelahunty.com/tips/linux_search_and_replace_multiple_files.php
# perl -pi -w -e 's/<i>//g;' *.srt
# perl -pi -w -e 's/<\/i>//g;' *.srt
# perl -pi -w -e 's/<b>//g;' *.srt
# perl -pi -w -e 's/<\/b>//g;' *.srt
I've tested it and it works. You need perl (do it from your PC). First do a backup of your srt subs...


You don't need perl and PC, only Telnet:
Code:
sed -i 's/<b>\|<\/b>\|<i>\|<\/i>//g' *.srt


to remove only tags you mentioned, or:
Code:
sed -i 's/<[^>]*>//g' *.srt


to remove all < > tags.


Fri Jan 07, 2011 1:19 pm
Profile

Joined: Sat Feb 13, 2010 9:59 pm
Posts: 673
Location: Tilburg
Post Re: ACR-PV73100 v7.3.x.r4824 Playon!HD (Optware friendly)
kraakie wrote:
but is it also possible to have a playondvr-hd optware friendly fw ? pv6120 ?


It's possible, but first things first: make one 'stable' firmware and next port to other devices, instead of making three 'unstable' firmwares and fixing them all.


Fri Jan 07, 2011 1:22 pm
Profile

Joined: Sat Oct 24, 2009 6:29 pm
Posts: 8937
Location: Netherlands
Post Re: ACR-PV73100 v7.3.x.r4824 Playon!HD (Optware friendly)
mikka wrote:
kraakie wrote:
but is it also possible to have a playondvr-hd optware friendly fw ? pv6120 ?


It's possible, but first things first: make one 'stable' firmware and next port to other devices, instead of making three 'unstable' firmwares and fixing them all.



Ok just was curious ;)

_________________
My latest music production released on 10-1-2012 !!!
http://www.youtube.com/watch?v=Kaagnvz3CAs
Playon HD1/HD2/HD3 and MIni series//DVR-HD/ESSENTIAL/VEOLO BLOG, Latest tips Tricks Unreleased Firmwares News and Tutorials !
HTTP://ACRYANFAQ.BLOGSPOT.COM


Fri Jan 07, 2011 1:32 pm
Profile

Joined: Fri Dec 17, 2010 6:40 am
Posts: 12
Post Re: ACR-PV73100 v7.3.x.r4824 Playon!HD (Optware friendly)
Intermittent Bug: Sometimes after a video finishes and the next one in the folder starts playing, after the normal delay the screensaver appears on top of the video. The video is still playing and I can still hear sound, but I have to press a button on the remote to get rid of the screensaver.

Can anyone confirm whether or not this happens in the official firmware?

On another subject, I've been trying to find an easy way to get to //Computer/share/really/deep/path, quickly and easily, preferably without creating dozens of extra SMB shares for specific locations. I can mount the shares and create symlinks to the folders...

...unfortunately, the only place that I can see created folders (through the GUI) is on the internal HDD and when I try to create symlinks there I get the error "Operation not permitted" - I assume this is because it's formatted NTFS, can anyone confirm this? My next step is to shrink the NTFS partition to a tiny placeholder, create a new ext3 partition and in a startup script unmount /tmp/hdd/volumes/HDD1 and mount the ext3 partition there instead.

Has anyone found a more elegant solution to achieve easy access to deep UNC paths?


Fri Jan 07, 2011 1:47 pm
Profile

Joined: Sat Feb 13, 2010 9:59 pm
Posts: 673
Location: Tilburg
Post Re: ACR-PV73100 v7.3.x.r4824 Playon!HD (Optware friendly)
Elroy: please keep this topic related to Optware friendly firmware. I can confirm symlinks are unsupported on NTFS filesystem, but this works:

Code:
mkdir /tmp/hdd/volumes/HDD1/root3
mount -o bind /tmp/hdd/root/ /tmp/hdd/volumes/HDD1/root3


which makes ext3 partition viewable through root3 directory on internal HDD. You can try to do the same with your network share AND if it doesn't work directly: create symlink to network share on ext3, and do the mentioned mount -o bind trick.


Fri Jan 07, 2011 2:34 pm
Profile

Joined: Sat Jan 01, 2011 7:38 pm
Posts: 2
Post Re: ACR-PV73100 v7.3.x.r4824 Playon!HD (Optware friendly)
I receive errors when I am using transmission. Sometimes no errors at all, sometimes "Resource temporarily not available" or '"no disk space" (which is definitely not true). Pausing and resuming the download sometimes help to get some more Megabytes before the errors occur again. I got this with different torrents, others were downloading fine so it's hard to pin down the problem.
So far I only used the standard client, this is the first time I am using transmission. So I can't say whether this is related to this firmware or to the client.
Someone else in this thread mentioned that he got errors with transmission and switched the file system, does this help, did anybody else get similar problems?

Btw, I encountered the bug with the screen saver popping up when the next file in a directory started to play as well (never got this with the stock firmware).


Fri Jan 07, 2011 6:29 pm
Profile

Joined: Wed Sep 01, 2010 9:26 am
Posts: 97
Location: Belgium
Post Re: ACR-PV73100 v7.3.x.r4824 Playon!HD (Optware friendly)
fetteelke wrote:
Someone else in this thread mentioned that he got errors with transmission and switched the file system, does this help, did anybody else get similar problems?

I had plenty of errors, changed to EXT3, and no errors anymore !

_________________
Playon!HD Mini (r4415) via HDMI to Samsung UE40C6730


Last edited by geert on Fri Jan 07, 2011 11:42 pm, edited 1 time in total.



Fri Jan 07, 2011 6:32 pm
Profile
Display posts from previous:  Sort by  
Reply to topic   [ 696 posts ]  Go to page Previous  1 ... 7, 8, 9, 10, 11, 12, 13 ... 70  Next

Who is online

Users browsing this forum: No registered users and 1 guest


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  
Powered by: phpBB | Innitial forum Design by: STSoftware | Modified by: AC Ryan.