Search found 100 matches

by LapinFou
January 18th, 2024, 3:29 am
Forum: Bug Reports
Topic: test curl hangs and causes a lot of cpu
Replies: 6
Views: 5151

Re: test curl hangs and causes a lot of cpu

I confirm that the version 4.2.1-ls146 included the Curl fix. 👍
by LapinFou
January 13th, 2024, 8:55 am
Forum: Bug Reports
Topic: test curl hangs and causes a lot of cpu
Replies: 6
Views: 5151

Re: test curl hangs and causes a lot of cpu

Good news a fix has been deployed in the latest Alpina 3.19 yesterday (12th December).
The incoming Sabnzbd docker image will include the fix. 😁
https://info.linuxserver.io/issues/2023-12-30-synology/
by LapinFou
October 25th, 2020, 8:13 am
Forum: Post-Processing Scripts
Topic: [Synology NAS] Indexing files in the DLNA server
Replies: 8
Views: 47391

Re: [Synology NAS] Indexing files in the DLNA server

Great! ;D
Thanks for that.
I hope this will be useful for some users.

Maybe you could mark this topic as "Posted-it". Just to avoid this topic to be burried in the forum. ;)
by LapinFou
September 25th, 2020, 9:32 am
Forum: Post-Processing Scripts
Topic: [Synology NAS] Indexing files in the DLNA server
Replies: 8
Views: 47391

Re: [Synology NAS] Indexing files in the DLNA server

Hi safihre, I updated my script to version 1.2 (it is always very easy to remove some code :) ). I also added some explanations to how install this script. If you think this script can be useful, you can add it in the SynoCommunity package. Maybe, you could also mark this topic as "Post-it / Pi...
by LapinFou
September 21st, 2020, 2:19 am
Forum: Post-Processing Scripts
Topic: [Synology NAS] Indexing files in the DLNA server
Replies: 8
Views: 47391

Re: [Synology NAS] Indexing files in the DLNA server

Concerning the recursive unpacking, this was a request from someone long time ago. The downloaded NZB (after unpacking the RAR archives) was including many 7zip files. So, I added this option. To be more clear: this option is to handle 7zip archives inside a NZB RAR archive. It was not supported by ...
by LapinFou
September 19th, 2020, 10:07 am
Forum: Post-Processing Scripts
Topic: [Synology NAS] Indexing files in the DLNA server
Replies: 8
Views: 47391

[Synology NAS] Indexing files in the DLNA server

[Edit 25th of September 2020 (version 1.2 is out): Removed 7zip unpack option. This is now a built-in SABnzbd function [/b] Hi folks, Here is my Python3 script SabToSyno.py . Some of those functions were already present in my retired [Synology NAS] Fixed non-ASCII chars and more...(2020/09/11) scri...
by LapinFou
September 14th, 2020, 2:55 am
Forum: Post-Processing Scripts
Topic: [Synology NAS] Fixed non-ASCII chars and more...(2020/09/11)
Replies: 122
Views: 526565

Re: [Synology NAS] Fixed non-ASCII chars and more...(2020/09/11)

This is very kind of you. And yes, I will keep you inform as soon as it is ready. :)
by LapinFou
September 13th, 2020, 3:10 pm
Forum: Post-Processing Scripts
Topic: [Synology NAS] Fixed non-ASCII chars and more...(2020/09/11)
Replies: 122
Views: 526565

Re: [Synology NAS] Fixed non-ASCII chars and more...(2020/09/11)

Here is a first version of the script now called " SabToSyno.py ". I will open a new topic with the instructions ASAP during this week. #!/usr/local/python3/bin/python3 -OO # # Done by LapinFou # date | version | comment #--------------------------------------- # 2020-09-13 | 1.0 | Initial...
by LapinFou
September 13th, 2020, 3:55 am
Forum: Post-Processing Scripts
Topic: [Synology NAS] Fixed non-ASCII chars and more...(2020/09/11)
Replies: 122
Views: 526565

Re: [Synology NAS] Fixed non-ASCII chars and more...(2020/09/11)

Your are correct. I'm planning to upgrade to Python3 the other part. Some people may use it. :)
If I got some times, I'm planning to do it this afternoon.
Off course, I will change the name of the script since the original purpose is not anymore there. ;)
by LapinFou
September 11th, 2020, 9:33 am
Forum: Post-Processing Scripts
Topic: [Synology NAS] Fixed non-ASCII chars and more...(2020/09/11)
Replies: 122
Views: 526565

Re: [Synology NAS] Fixed non-ASCII chars and more...(2013/10/02)

I've done some tests. I got the confirmation that my script is useless with SABnzbd / Python3. The problem has vanish. I've even tested the Chineese NZB file and everything is OK. ;D Unless somebody send my a NZB which does fail, it is time for my script to get retired. This is a very good news for ...
by LapinFou
September 11th, 2020, 9:06 am
Forum: Post-Processing Scripts
Topic: [Synology NAS] Fixed non-ASCII chars and more...(2020/09/11)
Replies: 122
Views: 526565

Re: [Synology NAS] Fixed non-ASCII chars and more...(2013/10/02)

@sander

Thanks you!!! :)

The NZB file "reftestnzb-German-Umlauts-ea6f31c1c39c.nzb" resulting filename Heizölrückstoßabdämpfung is exactly what I need.

I will use it for my tests. ;D
by LapinFou
September 11th, 2020, 8:22 am
Forum: Post-Processing Scripts
Topic: [Synology NAS] Fixed non-ASCII chars and more...(2020/09/11)
Replies: 122
Views: 526565

Re: [Synology NAS] Fixed non-ASCII chars and more...(2013/10/02)

During my lunch time, I dig in this old code. There is, as you mentioned, a major difference between Python2 and Python3 → Python3 is now unicode by default. So, I'm not sure my script is still useful. In order to test it correctly, I need a NZB file with some non-ASCII chars to run some tests. By a...
by LapinFou
September 10th, 2020, 3:16 am
Forum: Post-Processing Scripts
Topic: [Synology NAS] Fixed non-ASCII chars and more...(2020/09/11)
Replies: 122
Views: 526565

Re: [Synology NAS] Fixed non-ASCII chars and more...(2013/10/02)

I've been able to test the script converted for Python3. 1- I confirm that the encoding style is correct (2 nd line). The goal of this script is to convert files which have been archived under an ISO-8859 environment and extract them under an UTF8 environment. So, the character encoding style tests ...