Re: [RDD] RDImport segue editor not working correctly

2019-06-21 Thread Fred Gleason
On Fri, 2019-06-21 at 08:42 +0200, Gabriele Fergola wrote:
> trying rivendell 3.0 I noticed segue editor is affected still from
> the same little bug like 2.0 version.
> Dropboxes still configure rdimport segue level to thousand instead of
> decimal how u can see:
> 
> 16085 ?Sl 0:00 /usr/bin/rdimport --persistent-dropbox-
> id=1 --drop-box --add-scheduler-code=10s --normalization-level=-14 --
> autotrim-level=-40 --segue-level=-1000 --segue-length=2500 --fix-
> broken-formats --delete-source --startdate-offset=0 --enddate-
> offset=0 --log-filename=10s.log --log-directory=/home/rd/Logs --
> verbose 10s /home/rd/music_import/10s/*
> 
> I know Fred u asked me to send the patched to git but I'm really
> sorry I don't know how to send it. I tried but I fail :S  (please
> teach me how to do it and I will)

I've just created a new issue at GitHub for this (#451). You can see it
at:

https://github.com/ElvishArtisan/rivendell/issues/451

The developers will now take a look this as part of our usual bug-
swatting processes. Thanks for letting us know.

Cheers!


|-|
| Frederick F. Gleason, Jr. | Chief Developer |
|   | Paravel Systems |
|-|
| A room without books is like a body without a soul. |
| |
| -- Cicero   |
|-|

___
Rivendell-dev mailing list
Rivendell-dev@lists.rivendellaudio.org
http://caspian.paravelsystems.com/mailman/listinfo/rivendell-dev


Re: [RDD] RDImport segue editor not working correctly

2019-06-21 Thread Gabriele Fergola
Ok the patch attached to my previous email is not anymore good.

the modification need to be in the file rdservice/startup.cpp:

From
  args.push_back(QString().sprintf("--segue-level=%d",
   q->value(21).toInt()));

to
  args.push_back(QString().sprintf("--segue-level=%d",
   q->value(21).toInt()/100));

Regards
Gabriele

-- Forwarded message -
Da: Gabriele Fergola 
Date: ven 21 giu 2019 alle ore 08:42
Subject: RDImport segue editor not working correctly
To: Rivendell-Dev 


Hello,
trying rivendell 3.0 I noticed segue editor is affected still from the same
little bug like 2.0 version.
Dropboxes still configure rdimport segue level to thousand instead of
decimal how u can see:

16085 ?Sl 0:00 /usr/bin/rdimport --persistent-dropbox-id=1
--drop-box --add-scheduler-code=10s --normalization-level=-14
--autotrim-level=-40* --segue-level=-1000* --segue-length=2500
--fix-broken-formats --delete-source --startdate-offset=0
--enddate-offset=0 --log-filename=10s.log --log-directory=/home/rd/Logs
--verbose 10s /home/rd/music_import/10s/*

I know Fred u asked me to send the patched to git but I'm really sorry I
don't know how to send it. I tried but I fail :S  (please teach me how to
do it and I will)

This was the patch i sent some times ago :

--- rdcatchd/startdropboxes.cpp 2018-12-10 11:01:29.886166332 +0100
+++ rdcatchd/startdropboxes.cpp 2018-12-10 11:01:47.072241190 +0100
@@ -89,7 +89,7 @@
 }
 if(q->value(21).toInt()<1) {
 cmd+=
-  QString().sprintf(" --segue-level=%d",q->value(21).toInt());
+  QString().sprintf(" --segue-level=%d",q->value(21).toInt()/100);
 cmd+=
   QString().sprintf(" --segue-length=%u",q->value(22).toUInt());
 }

Is it possible to put in the next master?


Thanks
Gabriele
___
Rivendell-dev mailing list
Rivendell-dev@lists.rivendellaudio.org
http://caspian.paravelsystems.com/mailman/listinfo/rivendell-dev