Re: [RDD] Help RN just won't work

2020-10-27 Thread Fred Gleason
On Oct 26, 2020, at 00:18, Tim Camp  wrote:

> Any ideas why the rml would work so differently between the distros?
> I know that "printf" has some variations between distros and versions but I 
> wouldn't think that has any bearing 
> since the scripts run from the terminal on both.

Ok, I’ve just committed a change to Git ‘master’ that changes the ‘Run Script’ 
[‘RN’] RML so that:

1) It no longer uses runuser(1)

2) It invokes all scripts via the system shell (‘/usr/sh’).

With these changes in place, I’ve verified that commands containing shell 
redirectors, (‘|’, ‘>’, etc) now work correctly.

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] Help RN just won't work

2020-10-26 Thread Lorne Tyndale
Tim,

I suspect the difference is the fix that is in issue #604

https://github.com/ElvishArtisan/rivendell/pull/604

From what I can tell, the CentOS build/release doesn't yet have this
modification as it was built before this update was put into the code.

The CentOS 3.4.1 package was released on July 21.

Issue 604 was merged into the codebase July 29.

This fix should be in the next official release/build.

Lorne Tyndale


> 
> 
> Greetings,
> 
> One more caveat to add to my mystery.
> 
> I compiled 3.4.1 from git hub source on Ubuntu 18.04 and my scripts work
> with RN macro.
> 
> So does this obviously mean something is being treated differently on
> Centos 7.
> They run on Centos from the terminal. But not with the RN macro from
> rivendell.
> 
> I had pretty much made up my mind to move to Centos so that the future
> would be easier regarding updates and the like,
> but console integration is major so I have to figure this out before making
> my decision.
> 
> Any ideas why the rml would work so differently between the distros?
> I know that "printf" has some variations between distros and versions but I
> wouldn't think that has any bearing
> since the scripts run from the terminal on both.
> 
> Tim Camp
> WZEW-FM
> 
> 
> 
> 
> On Sat, Oct 24, 2020 at 6:45 PM Tim Camp  wrote:
> 
> > OK
> > RN sh -c usr/bin/6M! does not work
> > RN sh -c "/usr/bin/6M"! doesn't work  someone had suggested that after
> > -c the command had to be in quotes
> > RN sh -c 6M! does not work
> >  All of the above commands work from terminal both as rd or as root
> > no luck from rmlsend
> >
> > Tim Camp
> > WZEW-FM
> >
> >
> >
> >
> > On Sat, Oct 24, 2020 at 6:10 PM Fred Gleason 
> > wrote:
> >
> >> On Oct 24, 2020, at 18:56, Tim Camp  wrote:
> >>
> >> The Scripts that we mostly run are simple, we avoid echo because of
> >> its various problems across distros because of escape character troubles.
> >> an example of our usage
> >> RN 6M!
> >> 6M is a script to mute channel six on the console
> >> scripts are, where string is the command to the audio console.
> >> that script contains
> >>
> >> #!/usr/bin/env bash
> >> printf "/ch/06/mix/on\00\00\00,i\00\00\00\00\00\00" >
> >> /dev/udp/consoleip/port  (you can see why echo when have trouble with
> >> that)
> >>
> >>
> >> Ah. Bangpath trouble...
> >>
> >> This has a similar problem to your earlier example that used STDOUT
> >> redirection. The first line ("#!/usr/bin/env bash”) is actually an
> >> instruction *to the shell* to treat this as a shell script. But, since it’s
> >> being directly invoked as an executable, the shell never gets to see it,
> >> and the kernel’s exec() call barfs on it. Run it like this: ‘RN sh -c 6M!’
> >> and it should work. (You’ll probably need to provide the full path to the
> >> ‘6M’ script.)
> >>
> >> Since this seems to be a common problem, perhaps we should alter the ‘Run
> >> Script’ [‘RN’] so that it automatically executes everything as ‘sh -c
> >> 

Re: [RDD] Help RN just won't work

2020-10-25 Thread Tim Camp
Greetings,

One more caveat to add to my mystery.

I compiled 3.4.1 from git hub source on Ubuntu 18.04 and my scripts work
with RN macro.

So does this obviously mean something is being treated differently on
Centos 7.
They run on Centos from the terminal. But not with the RN macro from
rivendell.

I had pretty much made up my mind to move to Centos so that the future
would be easier regarding updates and the like,
but console integration is major so I have to figure this out before making
my decision.

Any ideas why the rml would work so differently between the distros?
I know that "printf" has some variations between distros and versions but I
wouldn't think that has any bearing
since the scripts run from the terminal on both.

Tim Camp
WZEW-FM




On Sat, Oct 24, 2020 at 6:45 PM Tim Camp  wrote:

> OK
> RN sh -c usr/bin/6M! does not work
> RN sh -c "/usr/bin/6M"! doesn't work  someone had suggested that after
> -c the command had to be in quotes
> RN sh -c 6M! does not work
>  All of the above commands work from terminal both as rd or as root
> no luck from rmlsend
>
> Tim Camp
> WZEW-FM
>
>
>
>
> On Sat, Oct 24, 2020 at 6:10 PM Fred Gleason 
> wrote:
>
>> On Oct 24, 2020, at 18:56, Tim Camp  wrote:
>>
>> The Scripts that we mostly run are simple, we avoid echo because of
>> its various problems across distros because of escape character troubles.
>> an example of our usage
>> RN 6M!
>> 6M is a script to mute channel six on the console
>> scripts are, where string is the command to the audio console.
>> that script contains
>>
>> #!/usr/bin/env bash
>> printf "/ch/06/mix/on\00\00\00,i\00\00\00\00\00\00" >
>> /dev/udp/consoleip/port  (you can see why echo when have trouble with
>> that)
>>
>>
>> Ah. Bangpath trouble...
>>
>> This has a similar problem to your earlier example that used STDOUT
>> redirection. The first line ("#!/usr/bin/env bash”) is actually an
>> instruction *to the shell* to treat this as a shell script. But, since it’s
>> being directly invoked as an executable, the shell never gets to see it,
>> and the kernel’s exec() call barfs on it. Run it like this: ‘RN sh -c 6M!’
>> and it should work. (You’ll probably need to provide the full path to the
>> ‘6M’ script.)
>>
>> Since this seems to be a common problem, perhaps we should alter the ‘Run
>> Script’ [‘RN’] so that it automatically executes everything as ‘sh -c
>> 

Re: [RDD] Help RN just won't work

2020-10-24 Thread David Klann
n 10/24/20 11:44 AM, Fred Gleason wrote:
> On Oct 24, 2020, at 12:05, Tim Camp  > wrote:
> 
>> RMLSend touch does indeed work, file is created.
>> our scripts do not
>> another simple command such as RN echo "something" > file! does not.
> 
> Likely it's the STDOUT redirection that’s the problem. Those redirection 
> operators (‘<‘, ‘>’, ‘|’, etc) are part of bash(1), not echo(1).
> 
> Try something like ‘RN sh -c echo something > file!’ (You may have to 
> escape the strings following the echo; I don’t have Rivendell loaded up 
> at the moment to test here).

Knowing a bit about shell quoting, I suggest the following if Fred's 
suggestion above does not work for you Tim:

 RN /bin/sh -c "echo something > /tmp/your-filename-here"

My understanding of the "-c" option to most shells (from reading `man 
bash`, etc.) is that they expect a complete command as a single, quoted 
argument, especially if you want the invoking shell (/bin/sh in this 
case) to perform the redirection.

Hoping your mystery is getting closer to being solved!

   ~David

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


Re: [RDD] Help RN just won't work

2020-10-24 Thread Fred Gleason
On Oct 24, 2020, at 12:05, Tim Camp  wrote:

> RMLSend touch does indeed work, file is created.
> our scripts do not
> another simple command such as RN echo "something" > file! does not.

Likely it's the STDOUT redirection that’s the problem. Those redirection 
operators (‘<‘, ‘>’, ‘|’, etc) are part of bash(1), not echo(1).

Try something like ‘RN sh -c echo something > file!’ (You may have to escape 
the strings following the echo; I don’t have Rivendell loaded up at the moment 
to test here).

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] Help RN just won't work

2020-10-24 Thread Tim Camp
Greetings Fred,
Thanks for your input and time.

RMLSend touch does indeed work, file is created.
our scripts do not
another simple command such as RN echo "something" > file! does not.

So where would you suggest going from here?
As here works.

Tim Camp
WZEW-FM


On Sat, Oct 24, 2020 at 8:57 AM Fred Gleason 
wrote:

> Ok, let’s try a fully worked-out example of a very ‘minimalist’ example,
> and see if we can scale up from there.
>
> The default ‘/etc/rd.conf’ shipped with Rivendell 3.4.1 has an
> ‘[Identity]’ section that looks like this:
>
> *** snip snip ***
> [Identity]
> AudioOwner=rivendell
> AudioGroup=rivendell
>
> PypadOwner=pypad
> PypadGroup=pypad
>
> RnRmlOwner=rivendell
> RnRmlGroup=rivendell
> *** snip snip ***
>
> That’s designed to replicate a 2.x setup (Principle of Least
> Astonishment), but for this exercise let’s change the user for RN so it’s
> same one that’s running the base Rivendell modules:
>
> *** snip snip ***
> [Identity]
> AudioOwner=rivendell
> AudioGroup=rivendell
>
> PypadOwner=pypad
> PypadGroup=pypad
>
> RnRmlOwner=rd
> RnRmlGroup=rd
> *** snip snip ***
>
> We’ve changed ‘rd.conf’, so restart the ‘rivendell’ service to pick up the
> changes. As ‘root’:
>
> systemctl restart rivendell
>
> Now, start up a ‘Terminal’, and do:
>
> ls -l /home/rd/here
>
> You should get: 'ls: cannot access /home/rd/here: No such file or
> directory’.
>
> Now, fire up ‘RMLSend’, from the Applications->Rivendell->Utilities menu.
> In the ‘Sent To:’ field enter ‘localhost’, and in the ‘Command:’ field
> enter ‘RN touch /home/rd/here!’. Touch the ‘Send Command’ button.
>
> Now, go back to the terminal and repeat:
>
> ls -l /home/rd/here
>
> Now, you should get back something like: '-rw-r--r--. 1 rd rd 0 Oct 24
> 09:26 /home/rd/here’.
>
> You’ve just created an empty file called ‘here’, in the ‘/home/rd’
> directory. A very basic starting point, but it will let us establish that
> the fundamental system in Rivendell is working. Once we have that, we can
> start working to determine why your specific scripts won’t run.
>
> 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
>


-- 
Tim Camp
Director of Operations/Programming
Dot Com Plus L.L.C.
dba WZEW-FM WNSP-FM
Mobile, Al.
___
Rivendell-dev mailing list
Rivendell-dev@lists.rivendellaudio.org
http://caspian.paravelsystems.com/mailman/listinfo/rivendell-dev


Re: [RDD] Help RN just won't work

2020-10-24 Thread Brian McGlynn
Hi Tim,

What user are running Rivendell as?  If you run as non-root, (as we do),
you'll need to update the code.  The next version of Rivendeil will have
the updated code.

https://github.com/ElvishArtisan/rivendell/pull/604


Brian


*--*
*Brian P. McGlynn*

ᐧ

On Fri, Oct 23, 2020 at 2:49 PM Tim Camp  wrote:

> Greetings,
>
> New install on CentOS 7 of Rivendell 3.4.1
>
> This is day number two of trying every possible thing I can think of as to
> why this doesn't work.
>
> Things I have tried.
>
> 1. various settings for RNRmlOwner
> rd rivendell
> root root
> rd users
> rd rd
>
> 2. paths
> RN with full path
> RN without full path
> changing $PATH
>
> 3. Running env
> running the scripts with sh
> running in bash
>
> Am I missing something?
>
> These scripts contain commands to control our consoles
> which turn on channels, route audio, mute channels, etc
> The scripts send data via udp to the console using /dev/udp
> I have not had a problem with then in version 2.*
> The scripts run fine in terminal as any user.
>
> Thanks for any thoughts or help on this.
>
> Tim Camp
> WZEW-FM
> Mobile, Al.
>
>
>
> ___
> Rivendell-dev mailing list
> Rivendell-dev@lists.rivendellaudio.org
> http://caspian.paravelsystems.com/mailman/listinfo/rivendell-dev
>
___
Rivendell-dev mailing list
Rivendell-dev@lists.rivendellaudio.org
http://caspian.paravelsystems.com/mailman/listinfo/rivendell-dev


Re: [RDD] Help RN just won't work

2020-10-24 Thread Fred Gleason
Ok, let’s try a fully worked-out example of a very ‘minimalist’ example, and 
see if we can scale up from there.

The default ‘/etc/rd.conf’ shipped with Rivendell 3.4.1 has an ‘[Identity]’ 
section that looks like this:

*** snip snip ***
[Identity]
AudioOwner=rivendell
AudioGroup=rivendell

PypadOwner=pypad
PypadGroup=pypad

RnRmlOwner=rivendell
RnRmlGroup=rivendell
*** snip snip ***

That’s designed to replicate a 2.x setup (Principle of Least Astonishment), but 
for this exercise let’s change the user for RN so it’s same one that’s running 
the base Rivendell modules:

*** snip snip ***
[Identity]
AudioOwner=rivendell
AudioGroup=rivendell

PypadOwner=pypad
PypadGroup=pypad

RnRmlOwner=rd
RnRmlGroup=rd
*** snip snip ***

We’ve changed ‘rd.conf’, so restart the ‘rivendell’ service to pick up the 
changes. As ‘root’:

systemctl restart rivendell

Now, start up a ‘Terminal’, and do:

ls -l /home/rd/here

You should get: 'ls: cannot access /home/rd/here: No such file or directory’.

Now, fire up ‘RMLSend’, from the Applications->Rivendell->Utilities menu. In 
the ‘Sent To:’ field enter ‘localhost’, and in the ‘Command:’ field enter ‘RN 
touch /home/rd/here!’. Touch the ‘Send Command’ button.

Now, go back to the terminal and repeat:

ls -l /home/rd/here

Now, you should get back something like: '-rw-r--r--. 1 rd rd 0 Oct 24 09:26 
/home/rd/here’. 

You’ve just created an empty file called ‘here’, in the ‘/home/rd’ directory. A 
very basic starting point, but it will let us establish that the fundamental 
system in Rivendell is working. Once we have that, we can start working to 
determine why your specific scripts won’t run.

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] Help RN just won't work

2020-10-23 Thread Tim Camp
Greetings,
Correction, retraction
Ok so, the runuser command runs out of ripcd with is running under root so
it should work just fine.

But RN still not working.

Tim


On Fri, Oct 23, 2020, 11:57 PM Tim Camp  wrote:

> Greetings,
>
> Thanks for those who emailed me with suggestions, however this is still a
> no go.
>
> I would like to point out that as of version 3 this is a different thing
> than it was in version 2.
>
> According to the rivendell operations guide
> **
> 13.8.37. Run Shell Command [RN]
> Module ripcd(8)
> Mnemonic RN
> Run a shell command.
> RN cmd!
> Run the shell command cmd.
>
> Note
>
> *The command is actually executed as:runuser -u user -g group cmd*
> where user and group are the values specified by the "RnRmlOwner=" and
> "RnRmlGroup="
> directives in the "[Identity]" section of rd.conf(5). See the runuser(1)
> man page for details
> concerning handling of the process environment.
> *
>
> The bold entry I have noted would seem to be important because if you
> specify
> RnRmlOwner=anyuser (except root)  and   RnRmlGroup=anygroup
> for example
>
> then the command runuser will fail because according to "man runuser"
> -g, --group=group
>   specify  the primary group,
>
> *this option is allowed for root user  only*
>
> so according to the documentation the only user you could specify that
> would work is root.
> This works in a terminal
>
> In Rivendell, Guess what? That doesn't work either.
>
> According to man runuser default path is /usr/local/bin thats where my
> scripts are
> the default env is /bin/bash or /bin/sh or /usr/bin/bash I'm all good with
> that
>
> My scripts run from the command line perfectly
>
> in a terminal "runuser -u root -g root cmd" runs perfection
> so the verdict is it should work except it doesn't
>
> Tim Camp
> WZEW-FM
>
>
>
>
>
> On Fri, Oct 23, 2020 at 1:49 PM Tim Camp  wrote:
>
>> Greetings,
>>
>> New install on CentOS 7 of Rivendell 3.4.1
>>
>> This is day number two of trying every possible thing I can think of as
>> to why this doesn't work.
>>
>> Things I have tried.
>>
>> 1. various settings for RNRmlOwner
>> rd rivendell
>> root root
>> rd users
>> rd rd
>>
>> 2. paths
>> RN with full path
>> RN without full path
>> changing $PATH
>>
>> 3. Running env
>> running the scripts with sh
>> running in bash
>>
>> Am I missing something?
>>
>> These scripts contain commands to control our consoles
>> which turn on channels, route audio, mute channels, etc
>> The scripts send data via udp to the console using /dev/udp
>> I have not had a problem with then in version 2.*
>> The scripts run fine in terminal as any user.
>>
>> Thanks for any thoughts or help on this.
>>
>> Tim Camp
>> WZEW-FM
>> Mobile, Al.
>>
>>
>>
>>
___
Rivendell-dev mailing list
Rivendell-dev@lists.rivendellaudio.org
http://caspian.paravelsystems.com/mailman/listinfo/rivendell-dev


Re: [RDD] Help RN just won't work

2020-10-23 Thread Tim Camp
Greetings,

Thanks for those who emailed me with suggestions, however this is still a
no go.

I would like to point out that as of version 3 this is a different thing
than it was in version 2.

According to the rivendell operations guide
**
13.8.37. Run Shell Command [RN]
Module ripcd(8)
Mnemonic RN
Run a shell command.
RN cmd!
Run the shell command cmd.

Note

*The command is actually executed as:runuser -u user -g group cmd*
where user and group are the values specified by the "RnRmlOwner=" and
"RnRmlGroup="
directives in the "[Identity]" section of rd.conf(5). See the runuser(1)
man page for details
concerning handling of the process environment.
*

The bold entry I have noted would seem to be important because if you
specify
RnRmlOwner=anyuser (except root)  and   RnRmlGroup=anygroup
for example

then the command runuser will fail because according to "man runuser"
-g, --group=group
  specify  the primary group,

*this option is allowed for root user  only*

so according to the documentation the only user you could specify that
would work is root.
This works in a terminal

In Rivendell, Guess what? That doesn't work either.

According to man runuser default path is /usr/local/bin thats where my
scripts are
the default env is /bin/bash or /bin/sh or /usr/bin/bash I'm all good with
that

My scripts run from the command line perfectly

in a terminal "runuser -u root -g root cmd" runs perfection
so the verdict is it should work except it doesn't

Tim Camp
WZEW-FM





On Fri, Oct 23, 2020 at 1:49 PM Tim Camp  wrote:

> Greetings,
>
> New install on CentOS 7 of Rivendell 3.4.1
>
> This is day number two of trying every possible thing I can think of as to
> why this doesn't work.
>
> Things I have tried.
>
> 1. various settings for RNRmlOwner
> rd rivendell
> root root
> rd users
> rd rd
>
> 2. paths
> RN with full path
> RN without full path
> changing $PATH
>
> 3. Running env
> running the scripts with sh
> running in bash
>
> Am I missing something?
>
> These scripts contain commands to control our consoles
> which turn on channels, route audio, mute channels, etc
> The scripts send data via udp to the console using /dev/udp
> I have not had a problem with then in version 2.*
> The scripts run fine in terminal as any user.
>
> Thanks for any thoughts or help on this.
>
> Tim Camp
> WZEW-FM
> Mobile, Al.
>
>
>
>
___
Rivendell-dev mailing list
Rivendell-dev@lists.rivendellaudio.org
http://caspian.paravelsystems.com/mailman/listinfo/rivendell-dev


Re: [RDD] Help RN just won't work

2020-10-23 Thread Lorne Tyndale
Tim,

Two things.  First, double check the following settings in the
[Identity] section of your /etc/rd.conf file

RnRmlOwner=
RnRmlGroup=

That is supposed to tell the system what user/group to run the RML's as.

If that doesn't work, I realize this goes against some of the suggested
Linux / Rivendell security conventions, but for testing purposes have
you tried changing the user that the Rivendell daemons run as by
systemd?

As root, edit the file:

/lib/systemd/system/rivendell.service

Then in the [Service] section add a line:

User=

where  is the logged in user that runs RDAirplay and other
Rivendell apps.

Also make sure the User= part is a capital U with the "ser" lower case. 
I made the mistake once of having it all lower case and it didn't work.

This should cause your daemons to run as the same user as your logged in
user.  Again not necessarily the best thing to do for security purposes,
but it might help you troubleshoot the issue.  Of course if you make
changes to your systemd  configuration file then you'll need to restart
the Rivendell services.  As root:

systemctl stop rivendell
systemctl start rivendell

Lorne Tyndale



>  Original Message 
> Subject: [RDD] Help RN just won't work
> From: Tim Camp 
> Date: Fri, October 23, 2020 2:49 pm
> To: User discussion about the Rivendell Radio Automation System
> 
> 
> 
> Greetings,
> 
> New install on CentOS 7 of Rivendell 3.4.1
> 
> This is day number two of trying every possible thing I can think of as to
> why this doesn't work.
> 
> Things I have tried.
> 
> 1. various settings for RNRmlOwner
> rd rivendell
> root root
> rd users
> rd rd
> 
> 2. paths
> RN with full path
> RN without full path
> changing $PATH
> 
> 3. Running env
> running the scripts with sh
> running in bash
> 
> Am I missing something?
> 
> These scripts contain commands to control our consoles
> which turn on channels, route audio, mute channels, etc
> The scripts send data via udp to the console using /dev/udp
> I have not had a problem with then in version 2.*
> The scripts run fine in terminal as any user.
> 
> Thanks for any thoughts or help on this.
> 
> Tim Camp
> WZEW-FM
> Mobile, Al.___
> Rivendell-dev mailing list
> Rivendell-dev@lists.rivendellaudio.org
> http://caspian.paravelsystems.com/mailman/listinfo/rivendell-dev
___
Rivendell-dev mailing list
Rivendell-dev@lists.rivendellaudio.org
http://caspian.paravelsystems.com/mailman/listinfo/rivendell-dev


Re: [RDD] Help RN just won't work

2020-10-23 Thread Kit Haskins
I don't have a /dev/udp in either my Ubuntu (20.04) nor Centos 6.8 (old box)



While what I'm going to suggest fixed another problem with permissions, I'll 
toss it out here, knowing there are many smarter people reading this thread:



I had issues with access to the serial ports /dev/ttyUSBx ...   I added the 
"dialout" group to the rduser.   Which resolved my issues.   As I don't have a 
"/dev/udp" to study under a microscope, I can blindly suggest 



ll /dev/udp 

see what group it is affiliated with and 



usermod -a -G groupname username


If /dev/udp is some executable binary and if you feel brave enough to set the 
sticky bit



chmod 4755 /dev/udp 





I'm also still running 2.19.3 here ...    





I have been reading your progress on the migration to 3.4.x and switching from 
Ubuntu to CentOS 7, I appreciate your notes and comments as you progress thru 
the challenge.   If you continue to beat up on it, eventually it just might 
work :-)



---

Thru the Ethernet, past the Gateway, off the modem pool, nothing but NET .

mailto:k...@ka0wuc.org




 On Fri, 23 Oct 2020 12:49:32 -0600 Tim Camp  wrote 


Greetings,


New install on CentOS 7 of Rivendell 3.4.1



This is day number two of trying every possible thing I can think of as to why 
this doesn't work.



Things I have tried.



1. various settings for RNRmlOwner

rd rivendell

root root

rd users

rd rd



2. paths

RN with full path

RN without full path

changing $PATH



3. Running env

running the scripts with sh

running in bash



Am I missing something?



These scripts contain commands to control our consoles

which turn on channels, route audio, mute channels, etc

The scripts send data via udp to the console using /dev/udp

I have not had a problem with then in version 2.*

The scripts run fine in terminal as any user.



Thanks for any thoughts or help on this.



Tim Camp

WZEW-FM

Mobile, Al.








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


Re: [RDD] Help wanted: Rivendell Video Playing

2020-03-08 Thread Cowboy
On Sun, 8 Mar 2020 18:10:01 -0400
drew Roberts  wrote:

> wondering how I could get my hands on a windows
> machine to test it out...

 VMWare or VirtualBox.
 Lately, I've tended toward Oracle's VirtualBox.
 ( I was once an alpha tester for VMWare, but that was years ago )
 Runs a treat on CentOS-6 but I haven't yet got it to run
 at all on CentOS-7.
 OTOH, CentOS-7 does run on VirtualBox running on CentOS-6 !
 ( go figure )

-- 
Cowboy 

I don't drink, I don't like it, it makes me feel too good.
-- K. Coates
___
Rivendell-dev mailing list
Rivendell-dev@lists.rivendellaudio.org
http://caspian.paravelsystems.com/mailman/listinfo/rivendell-dev


Re: [RDD] Help wanted: Rivendell Video Playing

2020-03-08 Thread drew Roberts
Frank,

thanks for the pointer...

I took a quick look. Do you know if the vlc media playlist it handles can
be added to / removed from/ and controlled via a bash script? I did not see
any mention of it. I will look deeper when I get a chance.

all the best,

drew

On Sun, Mar 8, 2020 at 6:14 PM Frank Christel  wrote:

> Drew,
>
> Have you considered OpenLP for looping videos from a playlist?
>
> https://openlp.org
>
> It’s open source and comes in Windows / Mac / Linux flavors. Very stable,
> projects to a second screen, and works wonderfully at our church.
>
> Frank
>
> 
>
> On 3/6/2020, at 1:05 PM, drew Roberts  wrote:
>
> I am looking for one or more people willing to set up a 3.x Rivendell
> system to play videos.
>
>

-- 
Enjoy the *Paradise Island Cam* playing
*Bahamian Or Nuttin* - https://www.paradiseislandcam.com/
___
Rivendell-dev mailing list
Rivendell-dev@lists.rivendellaudio.org
http://caspian.paravelsystems.com/mailman/listinfo/rivendell-dev


Re: [RDD] Help wanted: Rivendell Video Playing

2020-03-08 Thread Frank Christel
Drew,

Have you considered OpenLP for looping videos from a playlist?

https://openlp.org

It’s open source and comes in Windows / Mac / Linux flavors. Very stable, 
projects to a second screen, and works wonderfully at our church.

Frank



On 3/6/2020, at 1:05 PM, drew Roberts  wrote:

I am looking for one or more people willing to set up a 3.x Rivendell system to 
play videos.

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


Re: [RDD] Help wanted: Rivendell Video Playing

2020-03-08 Thread drew Roberts
Thanks Frank...

Something I was looking at earlier made me think it was windows only. I
burned a few cycles today wondering how I could get my hands on a windows
machine to test it out...

On Sun, Mar 8, 2020 at 3:36 PM Frank Schultze 
wrote:

> Hi Drew,
>
> Sorry, we don't have a CasparCG server around anymore. But the software
> runs on all Linux and requires no Windows at all. Check:
>
> https://github.com/CasparCG
>
> Hope this helps,
>
> Frank
>
> On Sun, 8 Mar 2020 at 15:51, drew Roberts  wrote:
>
>> Frank, thanks for the heads up/pointer.
>>
>> Do you still have a CasparCG server setup around?
>>
>> Unfortunately / I don't have a windows box around that I (am allowed to
>> /) can muck with.
>>
>> I have played with these some in the past in other contexts:
>>
>> https://www.dyne.org/software/freej/ (actually may have been in this
>> context as well.)
>> https://snowmix.sourceforge.io/
>> https://obsproject.com/ (using this now for something else)
>>
>> all the best,
>>
>> drew
>>
>>
>>
>> On Sun, Mar 8, 2020 at 8:11 AM Frank Schultze 
>> wrote:
>>
>>> Hi Drew,
>>>
>>> Some time ago we played with CasparCG server - https://casparcg.com/, Its
>>> a very capable open source video playout server that will respond to
>>> commands fairly easily setup with RML using CasparCG's AMCP protocol .
>>> We didn't go much further than that, but using macro carts one could
>>> foreseeably have a viable video scheduling/playout system.
>>>
>>> To get it running use the CasparCG client and you can see how it comes
>>> together. Also you can switch between sources (Producers as they call them)
>>> such as live inputs, streams, HTML sources etc.
>>>
>>> Thanks,
>>> Frank
>>>
>>> On Fri, 6 Mar 2020 at 21:05, drew Roberts  wrote:
>>>
 Hello,

 I am looking for one or more people willing to set up a 3.x Rivendell
 system to play videos. (I will help with the install.)

 I am looking for basic user feedback if that is all you feel up to.

 I am also looking for someone to discuss ideas and alternatives with as
 well.

 Please let me know if you are interested.

 all the best,

 drew
 --
 Enjoy the *Paradise Island Cam* playing
 *Bahamian Or Nuttin* - https://www.paradiseislandcam.com/
 ___
 Rivendell-dev mailing list
 Rivendell-dev@lists.rivendellaudio.org
 http://caspian.paravelsystems.com/mailman/listinfo/rivendell-dev

>>>
>>> The information contained in this communication is confidential and may
>>> be legally privileged.
>>> It is intended solely for the use of the individual or entity to whom it
>>> is addressed and others authorized to receive it.
>>> If you are not the intended recipient you are hereby notified that any
>>> disclosure, copying, distribution or taking action in
>>> reliance of the contents of this information is strictly prohibited and
>>> may be unlawful.
>>> UnitedStations is neither liable for the proper, complete transmission
>>> of the information contained in this communication nor any delay in its
>>> receipt.
>>>
>>
>>
>> --
>> Enjoy the *Paradise Island Cam* playing
>> *Bahamian Or Nuttin* - https://www.paradiseislandcam.com/
>>
>
> The information contained in this communication is confidential and may be
> legally privileged.
> It is intended solely for the use of the individual or entity to whom it
> is addressed and others authorized to receive it.
> If you are not the intended recipient you are hereby notified that any
> disclosure, copying, distribution or taking action in
> reliance of the contents of this information is strictly prohibited and
> may be unlawful.
> UnitedStations is neither liable for the proper, complete transmission of
> the information contained in this communication nor any delay in its
> receipt.
>


-- 
Enjoy the *Paradise Island Cam* playing
*Bahamian Or Nuttin* - https://www.paradiseislandcam.com/
___
Rivendell-dev mailing list
Rivendell-dev@lists.rivendellaudio.org
http://caspian.paravelsystems.com/mailman/listinfo/rivendell-dev


Re: [RDD] Help wanted: Rivendell Video Playing

2020-03-08 Thread Frank Schultze
Hi Drew,

Sorry, we don't have a CasparCG server around anymore. But the software
runs on all Linux and requires no Windows at all. Check:

https://github.com/CasparCG

Hope this helps,

Frank

On Sun, 8 Mar 2020 at 15:51, drew Roberts  wrote:

> Frank, thanks for the heads up/pointer.
>
> Do you still have a CasparCG server setup around?
>
> Unfortunately / I don't have a windows box around that I (am allowed to /)
> can muck with.
>
> I have played with these some in the past in other contexts:
>
> https://www.dyne.org/software/freej/ (actually may have been in this
> context as well.)
> https://snowmix.sourceforge.io/
> https://obsproject.com/ (using this now for something else)
>
> all the best,
>
> drew
>
>
>
> On Sun, Mar 8, 2020 at 8:11 AM Frank Schultze 
> wrote:
>
>> Hi Drew,
>>
>> Some time ago we played with CasparCG server - https://casparcg.com/, Its
>> a very capable open source video playout server that will respond to
>> commands fairly easily setup with RML using CasparCG's AMCP protocol .
>> We didn't go much further than that, but using macro carts one could
>> foreseeably have a viable video scheduling/playout system.
>>
>> To get it running use the CasparCG client and you can see how it comes
>> together. Also you can switch between sources (Producers as they call them)
>> such as live inputs, streams, HTML sources etc.
>>
>> Thanks,
>> Frank
>>
>> On Fri, 6 Mar 2020 at 21:05, drew Roberts  wrote:
>>
>>> Hello,
>>>
>>> I am looking for one or more people willing to set up a 3.x Rivendell
>>> system to play videos. (I will help with the install.)
>>>
>>> I am looking for basic user feedback if that is all you feel up to.
>>>
>>> I am also looking for someone to discuss ideas and alternatives with as
>>> well.
>>>
>>> Please let me know if you are interested.
>>>
>>> all the best,
>>>
>>> drew
>>> --
>>> Enjoy the *Paradise Island Cam* playing
>>> *Bahamian Or Nuttin* - https://www.paradiseislandcam.com/
>>> ___
>>> Rivendell-dev mailing list
>>> Rivendell-dev@lists.rivendellaudio.org
>>> http://caspian.paravelsystems.com/mailman/listinfo/rivendell-dev
>>>
>>
>> The information contained in this communication is confidential and may
>> be legally privileged.
>> It is intended solely for the use of the individual or entity to whom it
>> is addressed and others authorized to receive it.
>> If you are not the intended recipient you are hereby notified that any
>> disclosure, copying, distribution or taking action in
>> reliance of the contents of this information is strictly prohibited and
>> may be unlawful.
>> UnitedStations is neither liable for the proper, complete transmission of
>> the information contained in this communication nor any delay in its
>> receipt.
>>
>
>
> --
> Enjoy the *Paradise Island Cam* playing
> *Bahamian Or Nuttin* - https://www.paradiseislandcam.com/
>

-- 
The information contained in this communication is confidential and may be 
legally privileged.
It is intended solely for the use of the individual or 
entity to whom it is addressed and others authorized to receive it.
If you 
are not the intended recipient you are hereby notified that any disclosure, 
copying, distribution or taking action in
reliance of the contents of this 
information is strictly prohibited and may be unlawful.
UnitedStations is 
neither liable for the proper, complete transmission of the information 
contained in this communication nor any delay in its receipt.
___
Rivendell-dev mailing list
Rivendell-dev@lists.rivendellaudio.org
http://caspian.paravelsystems.com/mailman/listinfo/rivendell-dev


Re: [RDD] Help wanted: Rivendell Video Playing

2020-03-08 Thread drew Roberts
Frank, thanks for the heads up/pointer.

Do you still have a CasparCG server setup around?

Unfortunately / I don't have a windows box around that I (am allowed to /)
can muck with.

I have played with these some in the past in other contexts:

https://www.dyne.org/software/freej/ (actually may have been in this
context as well.)
https://snowmix.sourceforge.io/
https://obsproject.com/ (using this now for something else)

all the best,

drew



On Sun, Mar 8, 2020 at 8:11 AM Frank Schultze 
wrote:

> Hi Drew,
>
> Some time ago we played with CasparCG server - https://casparcg.com/, Its
> a very capable open source video playout server that will respond to
> commands fairly easily setup with RML using CasparCG's AMCP protocol .
> We didn't go much further than that, but using macro carts one could
> foreseeably have a viable video scheduling/playout system.
>
> To get it running use the CasparCG client and you can see how it comes
> together. Also you can switch between sources (Producers as they call them)
> such as live inputs, streams, HTML sources etc.
>
> Thanks,
> Frank
>
> On Fri, 6 Mar 2020 at 21:05, drew Roberts  wrote:
>
>> Hello,
>>
>> I am looking for one or more people willing to set up a 3.x Rivendell
>> system to play videos. (I will help with the install.)
>>
>> I am looking for basic user feedback if that is all you feel up to.
>>
>> I am also looking for someone to discuss ideas and alternatives with as
>> well.
>>
>> Please let me know if you are interested.
>>
>> all the best,
>>
>> drew
>> --
>> Enjoy the *Paradise Island Cam* playing
>> *Bahamian Or Nuttin* - https://www.paradiseislandcam.com/
>> ___
>> Rivendell-dev mailing list
>> Rivendell-dev@lists.rivendellaudio.org
>> http://caspian.paravelsystems.com/mailman/listinfo/rivendell-dev
>>
>
> The information contained in this communication is confidential and may be
> legally privileged.
> It is intended solely for the use of the individual or entity to whom it
> is addressed and others authorized to receive it.
> If you are not the intended recipient you are hereby notified that any
> disclosure, copying, distribution or taking action in
> reliance of the contents of this information is strictly prohibited and
> may be unlawful.
> UnitedStations is neither liable for the proper, complete transmission of
> the information contained in this communication nor any delay in its
> receipt.
>


-- 
Enjoy the *Paradise Island Cam* playing
*Bahamian Or Nuttin* - https://www.paradiseislandcam.com/
___
Rivendell-dev mailing list
Rivendell-dev@lists.rivendellaudio.org
http://caspian.paravelsystems.com/mailman/listinfo/rivendell-dev


Re: [RDD] Help wanted: Rivendell Video Playing

2020-03-08 Thread Frank Schultze
Hi Drew,

Some time ago we played with CasparCG server - https://casparcg.com/, Its a
very capable open source video playout server that will respond to commands
fairly easily setup with RML using CasparCG's AMCP protocol . We didn't go
much further than that, but using macro carts one could foreseeably have a
viable video scheduling/playout system.

To get it running use the CasparCG client and you can see how it comes
together. Also you can switch between sources (Producers as they call them)
such as live inputs, streams, HTML sources etc.

Thanks,
Frank

On Fri, 6 Mar 2020 at 21:05, drew Roberts  wrote:

> Hello,
>
> I am looking for one or more people willing to set up a 3.x Rivendell
> system to play videos. (I will help with the install.)
>
> I am looking for basic user feedback if that is all you feel up to.
>
> I am also looking for someone to discuss ideas and alternatives with as
> well.
>
> Please let me know if you are interested.
>
> all the best,
>
> drew
> --
> Enjoy the *Paradise Island Cam* playing
> *Bahamian Or Nuttin* - https://www.paradiseislandcam.com/
> ___
> Rivendell-dev mailing list
> Rivendell-dev@lists.rivendellaudio.org
> http://caspian.paravelsystems.com/mailman/listinfo/rivendell-dev
>

-- 
The information contained in this communication is confidential and may be 
legally privileged.
It is intended solely for the use of the individual or 
entity to whom it is addressed and others authorized to receive it.
If you 
are not the intended recipient you are hereby notified that any disclosure, 
copying, distribution or taking action in
reliance of the contents of this 
information is strictly prohibited and may be unlawful.
UnitedStations is 
neither liable for the proper, complete transmission of the information 
contained in this communication nor any delay in its receipt.
___
Rivendell-dev mailing list
Rivendell-dev@lists.rivendellaudio.org
http://caspian.paravelsystems.com/mailman/listinfo/rivendell-dev


Re: [RDD] Help wanted: Rivendell Video Playing

2020-03-06 Thread drew Roberts
David,

thanks for the response.

On Fri, Mar 6, 2020 at 3:29 PM David Klann  wrote:

> Hi drew,
>
> On Fri, 2020-03-06 at 15:09 -0500, drew Roberts wrote:
> > Alan,
> >
> > thanks for the response.
> >
> > On Fri, Mar 6, 2020 at 2:32 PM Alan Smith  wrote:
> >
> > > Let me throw out an alternative if it will make life a little easier:
> > >
> > > OBS Studio
> > >
> >
> > I already know about it. We use it already:
> >
> > https://www.youtube.com/watch?v=7s61ERZ_1Yc
> >
> >
>
> Umm... at the risk of sounding old ... Can you please explain the use case
> for
> this?


A bit of background... There has been talk on the list over the years about
the possibility of Rivendell playing Video as well as audio. A good number
of years go, I decided to see if I could "hack" something together to "make
it so"... It sort of worked. (I also hacked something else together around
rivendell such that it could server as a sort of jukebox for a restaurant
and allow the patrons to choose and vote on the music iirc. that is another
story.)

I recently saw the possibility mentioned again recently iirc, somewhere
rivendell related iirc, I got a bee in my bonnet to see if I could do a
code and concept refresh and get it working again. I have been having fun
doing so.


> Do you want to re-create MTV?


I doubt it.

> Do you want to schedule and play a
> "playlist" of videos?
>

This is sort of what it is doing now just as rivendell  schedules and plays
a
"playlist" of audios?
>
>
> The youtube looks to me like just a slideshow with some animation. What am
> I
> missing?
>

The youtube is just to show I know about and am already using the suggested
OBS Studio. Indeed it is just a slideshow and the music is basically
unrelated to the slides. The music is from an over the air FM (music)
station in the Bahamas.

>
> Thanks!
>
>   ~David
>
>
> all the best,

drew
-- 
Enjoy the *Paradise Island Cam* playing
*Bahamian Or Nuttin* - https://www.paradiseislandcam.com/
___
Rivendell-dev mailing list
Rivendell-dev@lists.rivendellaudio.org
http://caspian.paravelsystems.com/mailman/listinfo/rivendell-dev


Re: [RDD] Help wanted: Rivendell Video Playing

2020-03-06 Thread David Klann
Hi drew,

On Fri, 2020-03-06 at 15:09 -0500, drew Roberts wrote:
> Alan,
> 
> thanks for the response.
> 
> On Fri, Mar 6, 2020 at 2:32 PM Alan Smith  wrote:
> 
> > Let me throw out an alternative if it will make life a little easier:
> > 
> > OBS Studio
> > 
> 
> I already know about it. We use it already:
> 
> https://www.youtube.com/watch?v=7s61ERZ_1Yc
> 
> 

Umm... at the risk of sounding old ... Can you please explain the use case for
this? Do you want to re-create MTV? Do you want to schedule and play a
"playlist" of videos?

The youtube looks to me like just a slideshow with some animation. What am I
missing?

Thanks!

  ~David


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


Re: [RDD] Help wanted: Rivendell Video Playing

2020-03-06 Thread drew Roberts
Alan,

thanks for the response.

On Fri, Mar 6, 2020 at 2:32 PM Alan Smith  wrote:

> Let me throw out an alternative if it will make life a little easier:
>
> OBS Studio
>

I already know about it. We use it already:

https://www.youtube.com/watch?v=7s61ERZ_1Yc



>
> Its open source, available for Win, Linux, and Mac.  It will stream to
> most of the major platforms:  Facebook, Youtube, Twitch, twitter, etc.
> Will even stream to icecast in MPEG or WebM.
>
> The good news is its pretty neat, you can have multiple cams, static or
> dynamic overlays, etc.
>

It is neat.


> The bad news is its more of a video encoder and not so much an automation
> system.
>

This is the show stopper. This is why I am playing with Rivendell for
video. I see what I am doing as being able to be used with OBS Studio if
that is wanted.

  However, with VLC installed, you can create VLC playlists as a source in
> OBS, so you can sorta get automation out of it, albeit in a crude fashion.
>

I am currently using VLC and VLC playlists in what I am doing. Rivendell is
actually manipulating the VLC playlists to make the thing work.

>
> I hope it helps,
>
> -Alan
>

all the best,

drew


>
> etcOn 3/6/2020 1:05 PM, drew Roberts wrote:
>
> Hello,
>
> I am looking for one or more people willing to set up a 3.x Rivendell
> system to play videos. (I will help with the install.)
>
> I am looking for basic user feedback if that is all you feel up to.
>
> I am also looking for someone to discuss ideas and alternatives with as
> well.
>
> Please let me know if you are interested.
>
> all the best,
>
> drew
> --
> Enjoy the *Paradise Island Cam* playing
> *Bahamian Or Nuttin* - https://www.paradiseislandcam.com/
>
> ___
> Rivendell-dev mailing 
> listRivendell-dev@lists.rivendellaudio.orghttp://caspian.paravelsystems.com/mailman/listinfo/rivendell-dev
>
>
> ___
> Rivendell-dev mailing list
> Rivendell-dev@lists.rivendellaudio.org
> http://caspian.paravelsystems.com/mailman/listinfo/rivendell-dev
>


-- 
Enjoy the *Paradise Island Cam* playing
*Bahamian Or Nuttin* - https://www.paradiseislandcam.com/
___
Rivendell-dev mailing list
Rivendell-dev@lists.rivendellaudio.org
http://caspian.paravelsystems.com/mailman/listinfo/rivendell-dev


Re: [RDD] Help wanted: Rivendell Video Playing

2020-03-06 Thread Alan Smith
Gmeant to add that although it will stream to icecast, its not 
native in the app-its done through the custom ffmpeg output.


-Alan

On 3/6/2020 1:05 PM, drew Roberts wrote:

Hello,

I am looking for one or more people willing to set up a 3.x Rivendell 
system to play videos. (I will help with the install.)


I am looking for basic user feedback if that is all you feel up to.

I am also looking for someone to discuss ideas and alternatives with 
as well.


Please let me know if you are interested.

all the best,

drew
--
Enjoy the *Paradise Island Cam* playing
*Bahamian Or Nuttin* - https://www.paradiseislandcam.com/

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



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


Re: [RDD] Help wanted: Rivendell Video Playing

2020-03-06 Thread Alan Smith

Let me throw out an alternative if it will make life a little easier:

OBS Studio

Its open source, available for Win, Linux, and Mac.  It will stream to 
most of the major platforms: Facebook, Youtube, Twitch, twitter, etc.  
Will even stream to icecast in MPEG or WebM.


The good news is its pretty neat, you can have multiple cams, static or 
dynamic overlays, etc.  The bad news is its more of a video encoder and 
not so much an automation system.  However, with VLC installed, you can 
create VLC playlists as a source in OBS, so you can sorta get automation 
out of it, albeit in a crude fashion.


I hope it helps,

-Alan

etcOn 3/6/2020 1:05 PM, drew Roberts wrote:

Hello,

I am looking for one or more people willing to set up a 3.x Rivendell 
system to play videos. (I will help with the install.)


I am looking for basic user feedback if that is all you feel up to.

I am also looking for someone to discuss ideas and alternatives with 
as well.


Please let me know if you are interested.

all the best,

drew
--
Enjoy the *Paradise Island Cam* playing
*Bahamian Or Nuttin* - https://www.paradiseislandcam.com/

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



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


Re: [RDD] Help With Liquidsoap =-)

2019-08-08 Thread Thomas E
So I decided to use Liquidsoap, as Lorne Tyndale suggested. Thanks to all
of your suggestions =-)  My next question is for Fred Gleason. I am
wondering if you could add Flac to GlassCoder.

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


Re: [RDD] Help with Liquid Soap =-)

2019-08-02 Thread Lorne Tyndale
Or if you want to avoid Liquidsoap or DarkIce, there is also Glasscoder.

Rivendell --> Jackd --> Stereotool --> Glasscoder



Lorne Tyndale

> 
> Hello Thomas,
> U can solve in different way. 
> I solved using all jackd chain 
> 
> Rivendell —> jackd —> stereotool —> darkice 
> 
> In this way you can have any mount point you would like with few line of 
> config. 
> 
> For metadata pypad in Rivendell is working great. 
> 
> If you would like to use normal pcm how input you can use butt. 
> 
> Regards
> 
> Sent from my iPhone
> 
> > On 1 Aug 2019, at 22:16, Thomas E  wrote:
> > 
> > I am looking for help setting up liquid soap. I have download and installed 
> > it in CentOS 7. I would like to use two streams to an Icecast server. One 
> > stream is MP3 and the other is flac. I would like to use stereotool output 
> > to the input  of liquidsoap. And I need metadata from a text file from 
> > Rivendell. Any help or guidance would be much appreciated as liquidsoap is 
> > totally new to me and unfamiliar =-)
> > 
> > Kindest Regards,
> > Thomas E.
> > ___
> > Rivendell-dev mailing list
> > Rivendell-dev@lists.rivendellaudio.org
> > http://caspian.paravelsystems.com/mailman/listinfo/rivendell-dev
> ___
> Rivendell-dev mailing list
> Rivendell-dev@lists.rivendellaudio.org
> http://caspian.paravelsystems.com/mailman/listinfo/rivendell-dev
___
Rivendell-dev mailing list
Rivendell-dev@lists.rivendellaudio.org
http://caspian.paravelsystems.com/mailman/listinfo/rivendell-dev


Re: [RDD] Help with Liquid Soap =-)

2019-08-01 Thread Workino
Hello Thomas,
U can solve in different way. 
I solved using all jackd chain 

Rivendell —> jackd —> stereotool —> darkice 

In this way you can have any mount point you would like with few line of 
config. 

For metadata pypad in Rivendell is working great. 

If you would like to use normal pcm how input you can use butt. 

Regards

Sent from my iPhone

> On 1 Aug 2019, at 22:16, Thomas E  wrote:
> 
> I am looking for help setting up liquid soap. I have download and installed 
> it in CentOS 7. I would like to use two streams to an Icecast server. One 
> stream is MP3 and the other is flac. I would like to use stereotool output to 
> the input  of liquidsoap. And I need metadata from a text file from 
> Rivendell. Any help or guidance would be much appreciated as liquidsoap is 
> totally new to me and unfamiliar =-)
> 
> Kindest Regards,
> Thomas E.
> ___
> Rivendell-dev mailing list
> Rivendell-dev@lists.rivendellaudio.org
> http://caspian.paravelsystems.com/mailman/listinfo/rivendell-dev
___
Rivendell-dev mailing list
Rivendell-dev@lists.rivendellaudio.org
http://caspian.paravelsystems.com/mailman/listinfo/rivendell-dev


Re: [RDD] Help with Liquid Soap =-)

2019-08-01 Thread Rick


Usually this would be done by RDairplay using Jack connecting to Stereotool 
connecting to LQsoap. The default coockbook on the Liquidsoap site has enough 
examples to set you up for these two codecs streaming to Icecast. Verzonden 
vanaf mijn Samsung-apparaat

 Oorspronkelijk bericht 
Van: Thomas E  
Datum: 01-08-2019  10:16 PM  (GMT+01:00) 
Aan: rivendell-dev@lists.rivendellaudio.org 
Onderwerp: Re: [RDD] Help with Liquid Soap =-) 

I am looking for help setting up liquid soap. I have download and 
installed it in CentOS 7. I would like to use two streams to an Icecast 
server. One stream is MP3 and the other is flac. I would like to use 
stereotool output to the input  of liquidsoap. And I need metadata from a
 text file from Rivendell. Any help or guidance would be much 
appreciated as liquidsoap is totally new to me and unfamiliar =-)Kindest 
Regards,Thomas E.
___
Rivendell-dev mailing list
Rivendell-dev@lists.rivendellaudio.org
http://caspian.paravelsystems.com/mailman/listinfo/rivendell-dev


Re: [RDD] Help with Liquid Soap =-)

2019-08-01 Thread Thomas E
I am looking for help setting up liquid soap. I have download and installed
it in CentOS 7. I would like to use two streams to an Icecast server. One
stream is MP3 and the other is flac. I would like to use stereotool output
to the input  of liquidsoap. And I need metadata from a text file from
Rivendell. Any help or guidance would be much appreciated as liquidsoap is
totally new to me and unfamiliar =-)

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


Re: [RDD] Help - Questions on scheduling, interruptions

2018-03-07 Thread David Klann
While we're on the topic of dropboxes and downloads, please permit me to
self-promote two things: 1) a podcast downloader and importer, and 2) a
dropbox "sanity checker". Both are command line tools to help with
dropbox configuration and maintenance.

The podcast downloader (I call it "Kuchota"; Swahili for "fetch") is a
ZSH script that configures and maintains configuration for the standard
Linux tool "podget" (https://github.com/dvehrs/podget). Details and
source at
https://github.com/opensourceradio/ram/blob/master/usr/local/bin/kuchota
(I need to pull it out of its current repo and make it a separate project).

The dropox checker is an experiment in Go (golang.org) that I'm using
with several stations to check the current state of dropbox
configurations and rdimport processes. It attempts to fix simple issues
like permissions and missing directories, and if necessary restarts
rdcatchd(8) to kick off missing rdimport(1) processes. The code is at
https://github.com/dklann/rd-dropbox

  ~David Klann

On 03/06/2018 05:10 PM, Tom Van Gorkom wrote:
> In our case, we have several Riv clients on a server but the dropbox
> setup will be mostly the same on a standalone box as well.  I set up a
> shared folder (rd_xfer) on all Riv clients in our network containing
> folders named for each group that staff would drop audio into, such as
> Music, Instrumentals, Teaching Programs, MiniPrograms, etc. On a
> standalone box, I created a folder on the desktop for importation with
> the specific group folders inside. There is nothing special about these.
> They are only a place to drop the audio files to be imported. Next you
> will point Dropbox to them.



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


Re: [RDD] Help - Questions on scheduling, interruptions

2018-03-06 Thread Tom Van Gorkom
In our case, we have several Riv clients on a server but the dropbox setup
will be mostly the same on a standalone box as well.  I set up a shared
folder (rd_xfer) on all Riv clients in our network containing folders named
for each group that staff would drop audio into, such as Music,
Instrumentals, Teaching Programs, MiniPrograms, etc. On a standalone box, I
created a folder on the desktop for importation with the specific group
folders inside. There is nothing special about these. They are only a place
to drop the audio files to be imported. Next you will point Dropbox to
them.

In RDAmin, select Manage Hosts and then select the client that will
actually do the importation, if a standalone box, select localhost  (I used
to spread this around various clients but if any one got turned off then
some imports didn't happen so I use only the client in my office for all
imports now), click Manage Hosts>Dropboxes>Add. Select the Default Group
that these audio files should import into such as Music, then type the path
to the file to import or click on Select and navigate to it and select the
folder where the audio will be dropped, adding *.wav, *.mp3 or *.* to the
end of the path depending on what type of audio you will be importing.
Example:  /home/rd/rd_xfer/Music/*.wav .  Note: Sometimes special
characters, dashes, dots etc in the audio file name can prevent
importation. Also the extension is case sensitive unless you use *.* to
grab everything.

You do not have to specify the cart number unless you want all those cuts
in one cart. You do not have to set all the options. Don't delete before
importing.  In Log File, I specify where to keep logs to help troubleshoot
if something isn't importing. You can make a folder wherever called
something like dropbox_logs and then navigate to it, adding the name you
will identify it by at the end of the path such as music_import.log .

 If you use schedule codes, this is the place to set them if you do a lot
of importing. You can always change them in the library but there's nothing
like the wrong kind of audio playing when you didn't want it because you
forgot to go back to set the code or dates.

I like to delete source files after import so I see that they imported and
don't build up leaving me wondering what imported and what didn't.  I
suggest you normalize, typically -13 and you may want to set autotrim as
well.  Once you click OK and close the host setup, you should be able to
drop audio into the dropbox folder you setup and after about 30 secs, it
should begin importation.

We use a service called Amb-OS which downloads specific pre-recorded audio
programs from a server a little like FTP. For those, I run a script every
hour to check and import anything that has downloaded into the proper cart
including setting or modifying dates in the options. It has worked so well
for the last couple years I nearly forget that it's running. For programs
we manually download from FTP sites, I use Filezilla presetting what folder
each program drops into and those get imported via dropbox.

I hope this helps.

Tom Van Gorkom
Radio Esperanza Engineering, KRIO AM/FM, KOIR FM
Office: 956-380-8150 <(956)%20380-8150>
Cell: 865-803-7427 <(865)%20803-7427>

Rio Grande Bible Institute
4300 S US Hwy 281
Edinburg, TX 78539

On Tue, Mar 6, 2018 at 2:41 PM,  wrote:

> Tom
> On how you import the files from dropbox can you send a example how you
> are getting that done I can 't get ours to work.
>
> Thanks
>
>
>
>
> On 2018-03-05 11:18, Tom Van Gorkom wrote:
>
>> I may not be understanding, but we always use Riv dropbox importation
>> for our library with no issues. I also run rdimport for programs
>> downloaded from another source. At the top of each hour, I make the
>> legal ID a hard start/make next and over fill the hour with songs. We
>> place any longer or critical programs earlier in the hour so there is
>> no chance of long overruns, but it never cuts off any audio file. It
>> just won't play anything that won't be able to start before the top of
>> the hour, so extra songs at the end are skipped. This causes our legal
>> ID to vary by a few seconds to a couple minutes after the TOH, but we
>> find this to be trouble free. We don't air any programs longer than 57
>> min.
>>
>> I used to play a TOH time announcement with a hard start/start
>> immediately and then the legal ID which was very precise, running a
>> fade down macro in Aux Log for each hour but some listeners wondered
>> why we faded out songs so we dropped that.
>>
>> Tom Van Gorkom
>> Radio Esperanza Engineering, KRIO AM/FM, KOIR FM
>> Office: 956-380-8150
>> Cell: 865-803-7427
>>
>> Rio Grande Bible Institute
>> 4300 S US Hwy 281
>> Edinburg, TX 78539
>>
>> On Mon, Mar 5, 2018 at 8:09 AM, David Backovsky
>>  wrote:
>>
>> Yeah, I've already found this issue before, so I changed almost all
>>> transitions to Play instead of Segue. From what I understood segue
>>> can interrupt, so it has two meanings you can edit "segues" ma

Re: [RDD] Help - Questions on scheduling, interruptions

2018-03-06 Thread ijames

Tom
On how you import the files from dropbox can you send a example how you 
are getting that done I can 't get ours to work.


Thanks



On 2018-03-05 11:18, Tom Van Gorkom wrote:

I may not be understanding, but we always use Riv dropbox importation
for our library with no issues. I also run rdimport for programs
downloaded from another source. At the top of each hour, I make the
legal ID a hard start/make next and over fill the hour with songs. We
place any longer or critical programs earlier in the hour so there is
no chance of long overruns, but it never cuts off any audio file. It
just won't play anything that won't be able to start before the top of
the hour, so extra songs at the end are skipped. This causes our legal
ID to vary by a few seconds to a couple minutes after the TOH, but we
find this to be trouble free. We don't air any programs longer than 57
min.

I used to play a TOH time announcement with a hard start/start
immediately and then the legal ID which was very precise, running a
fade down macro in Aux Log for each hour but some listeners wondered
why we faded out songs so we dropped that.

Tom Van Gorkom
Radio Esperanza Engineering, KRIO AM/FM, KOIR FM
Office: 956-380-8150
Cell: 865-803-7427

Rio Grande Bible Institute
4300 S US Hwy 281
Edinburg, TX 78539

On Mon, Mar 5, 2018 at 8:09 AM, David Backovsky
 wrote:


Yeah, I've already found this issue before, so I changed almost all
transitions to Play instead of Segue. From what I understood segue
can interrupt, so it has two meanings you can edit "segues" manually
on a track by track basis, or set "segue" transitions which fade but
also interrupt (if i understood correctly). I don't take risks with
logs, so I add a manual log chain with RDLogEdit everyday, we had
continuous issues with automatic log chaining and I don't trust it.
If you know how to schedule a log chain event in a clock please let
me know...

We play News at the top of every hour from 11 - 18, so I have a BBC
style countdown that interrupts the previous event and then goes
into the news. How would I make a long fade on that event, manually
inside the cart/cut or event? Or is it a segue transition (and you
set a long "manual" or "forced" segue in RDAirplay settings?

Best,

David

On Mon, Mar 5, 2018 at 2:58 PM, <41001...@python.interpring.com>
wrote:

Are you using "segue" or "play" transitions? If you're getting
unexpected transitions from one event to the next, unexplainable by
the presence of timed events in your log, try changing all "segue"
transitions to "play".

Re: hard starts at the top of the hour: do they absolutely have to
be right at the top of the hour? If so, you'll need to put some sort
of "fill event" at the end of each hour, such as instrumental music
or an old-fashioned interval signal (e.g "Shiroka strana moya
rodnaya") and set the fade time to three or four seconds to make a
gentle fade-out.

At WSCS and the other WCN stations, there is exactly one hard start
each day, in the middle of the night, preceded by a long piece of
fill music; the rest of the day is programmed to time out naturally
as close as possible to the top of each hour. This works, but not so
well that we would be able to catch CBS news live at the top of the
hour.

Oh, and don't put a hard start or a make-next anywhere near
midnight, unless you know what you're doing. I don't know how many
times I've had calls from people wondering why their stations were
running Wednesday's log on Tuesday.

Rob

--
Я там, где ребята толковые,
Я там, где плакаты "Вперёд",
Где песни рабочие новые
Страна трудовая поёт.

On Mon, 5 Mar 2018, D. B. .B. B. wrote:

Thanks for the replies. We don't use dropboxes, we import files
directly
from the local drive. I always check segment length when importing
against
the original file. I am 100% sure the files are interrupted, because
later
they would play at their correct length. I overschedule music and I
tried to
use Hard Times - Make Next to ensure that priority events played
out. But I
think that the best solution is to give extra breathing room in the
clocks
to important events. I try to use "anchors" on top of the hour like
a Hard
Time - Start Immediately with a news countdown or a second of
silence to
anchor the broadcast. I'm not sure how to make it when
overscheduling so
that the broadcast is on schedule without at least a song at the end
of the
hour being interrupted by an "anchor" event.

Best,

David

On Mon, Mar 5, 2018 at 12:49 PM, <41001...@python.interpring.com>
wrote:
On Sun, 4 Mar 2018, D. B. .B. B. wrote:

I am working with Rivendell for a community radio
station and have
encountered some issues with tracks - songs and
shows - being interrupted
halfway through. It sometimes happens that a longer
segment is simply
interrupted without warning and another starts
playing. This happens for
both hard time and non-hard time events. Can one
make an event
uninterruptable?

Are the events truly being interrupted? Or have the audio
files
somehow been trun

Re: [RDD] Help - Questions on scheduling, interruptions

2018-03-05 Thread Tom Van Gorkom
I may not be understanding, but we always use Riv dropbox importation for
our library with no issues. I also run rdimport for programs downloaded
from another source. At the top of each hour, I make the legal ID a hard
start/make next and over fill the hour with songs. We place any longer or
critical programs earlier in the hour so there is no chance of long
overruns, but it never cuts off any audio file. It just won't play anything
that won't be able to start before the top of the hour, so extra songs at
the end are skipped. This causes our legal ID to vary by a few seconds to a
couple minutes after the TOH, but we find this to be trouble free. We don't
air any programs longer than 57 min.

I used to play a TOH time announcement with a hard start/start immediately
and then the legal ID which was very precise, running a fade down macro in
Aux Log for each hour but some listeners wondered why we faded out songs so
we dropped that.

Tom Van Gorkom
Radio Esperanza Engineering, KRIO AM/FM, KOIR FM
Office: 956-380-8150
Cell: 865-803-7427

Rio Grande Bible Institute
4300 S US Hwy 281
Edinburg, TX 78539

On Mon, Mar 5, 2018 at 8:09 AM, David Backovsky 
wrote:

> Yeah, I've already found this issue before, so I changed almost all
> transitions to Play instead of Segue. From what I understood segue can
> interrupt, so it has two meanings you can edit "segues" manually on a track
> by track basis, or set "segue" transitions which fade but also interrupt
> (if i understood correctly). I don't take risks with logs, so I add a
> manual log chain with RDLogEdit everyday, we had continuous issues with
> automatic log chaining and I don't trust it. If you know how to schedule a
> log chain event in a clock please let me know...
>
> We play News at the top of every hour from 11 - 18, so I have a BBC style
> countdown that interrupts the previous event and then goes into the news.
> How would I make a long fade on that event, manually inside the cart/cut or
> event? Or is it a segue transition (and you set a long "manual" or "forced"
> segue in RDAirplay settings?
>
> Best,
>
> David
>
> On Mon, Mar 5, 2018 at 2:58 PM, <41001...@python.interpring.com> wrote:
>
>>
>> Are you using "segue" or "play" transitions? If you're getting unexpected
>> transitions from one event to the next, unexplainable by the presence of
>> timed events in your log, try changing all "segue" transitions to "play".
>>
>> Re: hard starts at the top of the hour: do they absolutely have to be
>> right at the top of the hour? If so, you'll need to put some sort of "fill
>> event" at the end of each hour, such as instrumental music or an
>> old-fashioned interval signal (e.g "Shiroka strana moya rodnaya") and set
>> the fade time to three or four seconds to make a gentle fade-out.
>>
>> At WSCS and the other WCN stations, there is exactly one hard start each
>> day, in the middle of the night, preceded by a long piece of fill music;
>> the rest of the day is programmed to time out naturally as close as
>> possible to the top of each hour. This works, but not so well that we would
>> be able to catch CBS news live at the top of the hour.
>>
>> Oh, and don't put a hard start or a make-next anywhere near midnight,
>> unless you know what you're doing. I don't know how many times I've had
>> calls from people wondering why their stations were running Wednesday's log
>> on Tuesday.
>>
>>
>> Rob
>>
>> --
>> Я там, где ребята толковые,
>> Я там, где плакаты "Вперёд",
>> Где песни рабочие новые
>> Страна трудовая поёт.
>>
>> On Mon, 5 Mar 2018, D. B. .B. B. wrote:
>>
>> Thanks for the replies. We don't use dropboxes, we import files directly
>>> from the local drive. I always check segment length when importing
>>> against
>>> the original file. I am 100% sure the files are interrupted, because
>>> later
>>> they would play at their correct length. I overschedule music and I
>>> tried to
>>> use Hard Times - Make Next to ensure that priority events played out.
>>> But I
>>> think that the best solution is to give extra breathing room in the
>>> clocks
>>> to important events. I try to use "anchors" on top of the hour like a
>>> Hard
>>> Time - Start Immediately with a news countdown or a second of silence to
>>> anchor the broadcast. I'm not sure how to make it when overscheduling so
>>> that the broadcast is on schedule without at least a song at the end of
>>> the
>>> hour being interrupted by an "anchor" event.
>>>
>>> Best,
>>>
>>> David
>>>
>>> On Mon, Mar 5, 2018 at 12:49 PM, <41001...@python.interpring.com> wrote:
>>>   On Sun, 4 Mar 2018, D. B. .B. B. wrote:
>>>
>>> I am working with Rivendell for a community radio
>>> station and have
>>> encountered some issues with tracks - songs and
>>> shows - being interrupted
>>> halfway through. It sometimes happens that a longer
>>> segment is simply
>>> interrupted without warning and another starts
>>> playing. T

Re: [RDD] Help - Questions on scheduling, interruptions

2018-03-05 Thread David Backovsky
Yeah, I've already found this issue before, so I changed almost all
transitions to Play instead of Segue. From what I understood segue can
interrupt, so it has two meanings you can edit "segues" manually on a track
by track basis, or set "segue" transitions which fade but also interrupt
(if i understood correctly). I don't take risks with logs, so I add a
manual log chain with RDLogEdit everyday, we had continuous issues with
automatic log chaining and I don't trust it. If you know how to schedule a
log chain event in a clock please let me know...

We play News at the top of every hour from 11 - 18, so I have a BBC style
countdown that interrupts the previous event and then goes into the news.
How would I make a long fade on that event, manually inside the cart/cut or
event? Or is it a segue transition (and you set a long "manual" or "forced"
segue in RDAirplay settings?

Best,

David

On Mon, Mar 5, 2018 at 2:58 PM, <41001...@python.interpring.com> wrote:

>
> Are you using "segue" or "play" transitions? If you're getting unexpected
> transitions from one event to the next, unexplainable by the presence of
> timed events in your log, try changing all "segue" transitions to "play".
>
> Re: hard starts at the top of the hour: do they absolutely have to be
> right at the top of the hour? If so, you'll need to put some sort of "fill
> event" at the end of each hour, such as instrumental music or an
> old-fashioned interval signal (e.g "Shiroka strana moya rodnaya") and set
> the fade time to three or four seconds to make a gentle fade-out.
>
> At WSCS and the other WCN stations, there is exactly one hard start each
> day, in the middle of the night, preceded by a long piece of fill music;
> the rest of the day is programmed to time out naturally as close as
> possible to the top of each hour. This works, but not so well that we would
> be able to catch CBS news live at the top of the hour.
>
> Oh, and don't put a hard start or a make-next anywhere near midnight,
> unless you know what you're doing. I don't know how many times I've had
> calls from people wondering why their stations were running Wednesday's log
> on Tuesday.
>
>
> Rob
>
> --
> Я там, где ребята толковые,
> Я там, где плакаты "Вперёд",
> Где песни рабочие новые
> Страна трудовая поёт.
>
> On Mon, 5 Mar 2018, D. B. .B. B. wrote:
>
> Thanks for the replies. We don't use dropboxes, we import files directly
>> from the local drive. I always check segment length when importing against
>> the original file. I am 100% sure the files are interrupted, because later
>> they would play at their correct length. I overschedule music and I tried
>> to
>> use Hard Times - Make Next to ensure that priority events played out. But
>> I
>> think that the best solution is to give extra breathing room in the clocks
>> to important events. I try to use "anchors" on top of the hour like a Hard
>> Time - Start Immediately with a news countdown or a second of silence to
>> anchor the broadcast. I'm not sure how to make it when overscheduling so
>> that the broadcast is on schedule without at least a song at the end of
>> the
>> hour being interrupted by an "anchor" event.
>>
>> Best,
>>
>> David
>>
>> On Mon, Mar 5, 2018 at 12:49 PM, <41001...@python.interpring.com> wrote:
>>   On Sun, 4 Mar 2018, D. B. .B. B. wrote:
>>
>> I am working with Rivendell for a community radio
>> station and have
>> encountered some issues with tracks - songs and
>> shows - being interrupted
>> halfway through. It sometimes happens that a longer
>> segment is simply
>> interrupted without warning and another starts
>> playing. This happens for
>> both hard time and non-hard time events. Can one
>> make an event
>> uninterruptable?
>>
>>
>>   Are the events truly being interrupted? Or have the audio files
>>   somehow been truncated?
>>
>>   What happens if you try to play one in rdlibrary? Does the
>>   actual length of the file correspond to the length Rivendell
>>   claims?
>>
>>   At stations where long files were uploaded to a dropbox via the
>>   Internet, I used to see rdimport grab a file while it was still
>>   uploading, resulting in a truncated file. I stopped setting up
>>   dropboxes in Rivendell, instead running a Perl script to invoke
>>   rdimport only after asertaining that the last modification time
>>   on the file isat least 30 seconds ago.
>>
>>
>>   Rob
>>
>>   --
>>   Я там, где ребята толковые,
>>   Я там, где плакаты "Вперёд",
>>   Где песни рабочие новые
>>   Страна трудовая поёт.
>>
>>
>>
>>I try to schedule as closely as I can but we have very
>> different lengths of songs in our library, and it
>> seems that often instead
>> of skipping the next song it will jump into it
>> interrupting. This is a
>>   

Re: [RDD] Help - Questions on scheduling, interruptions

2018-03-05 Thread D. B. .B. B.
Thanks for the replies. We don't use dropboxes, we import files directly
from the local drive. I always check segment length when importing against
the original file. I am 100% sure the files are interrupted, because later
they would play at their correct length. I overschedule music and I tried
to use Hard Times - Make Next to ensure that priority events played out.
But I think that the best solution is to give extra breathing room in the
clocks to important events. I try to use "anchors" on top of the hour like
a Hard Time - Start Immediately with a news countdown or a second of
silence to anchor the broadcast. I'm not sure how to make it when
overscheduling so that the broadcast is on schedule without at least a song
at the end of the hour being interrupted by an "anchor" event.

Best,

David

On Mon, Mar 5, 2018 at 12:49 PM, <41001...@python.interpring.com> wrote:

> On Sun, 4 Mar 2018, D. B. .B. B. wrote:
>
> I am working with Rivendell for a community radio station and have
>> encountered some issues with tracks - songs and shows - being interrupted
>> halfway through. It sometimes happens that a longer segment is simply
>> interrupted without warning and another starts playing. This happens for
>> both hard time and non-hard time events. Can one make an event
>> uninterruptable?
>>
>
> Are the events truly being interrupted? Or have the audio files somehow
> been truncated?
>
> What happens if you try to play one in rdlibrary? Does the actual length
> of the file correspond to the length Rivendell claims?
>
> At stations where long files were uploaded to a dropbox via the Internet,
> I used to see rdimport grab a file while it was still uploading, resulting
> in a truncated file. I stopped setting up dropboxes in Rivendell, instead
> running a Perl script to invoke rdimport only after asertaining that the
> last modification time on the file isat least 30 seconds ago.
>
>
> Rob
>
> --
> Я там, где ребята толковые,
> Я там, где плакаты "Вперёд",
> Где песни рабочие новые
> Страна трудовая поёт.
>
>
>
>
>  I try to schedule as closely as I can but we have very
>
>> different lengths of songs in our library, and it seems that often instead
>> of skipping the next song it will jump into it interrupting. This is a
>> serious concern because we have some original content that has now been
>> twice interrupted mid-air without warning. What could be the cause of this
>> and how can this be avoided?
>>
>> Thanks,
>>
>> David B.
>>
>>
>>
>>
___
Rivendell-dev mailing list
Rivendell-dev@lists.rivendellaudio.org
http://caspian.paravelsystems.com/mailman/listinfo/rivendell-dev


Re: [RDD] Help - Questions on scheduling, interruptions

2018-03-04 Thread carlos
Ami me sucedió esto hacer algún tiempo con los archivos .ogg que
importaba desde Dropbox.

Lo que hice fue cambiar los formatos .ogg por mp3, wav o flac.

Ami happened to me to do some time with the .ogg files that mattered
from Dropbox.

What I did was change the .ogg formats by mp3, wav or flac.
El 04/03/18 a las 18:57, c...@elfpen.com escribió:
> I am working with Rivendell for a community radio station and have
> encountered some issues with tracks - songs and shows - being
> interrupted halfway through. It sometimes happens that a longer
> segment is simply interrupted without warning and another starts
> playing. This happens for both hard time and non-hard time events. Can
> one make an event uninterruptable? I try to schedule as closely as I
> can but we have very different lengths of songs in our library, and it
> seems that often instead of skipping the next song it will jump into
> it interrupting. This is a serious concern because we have some
> original content that has now been twice interrupted mid-air without
> warning. What could be the cause of this and how can this be avoided? 

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


Re: [RDD] Help - Questions on scheduling, interruptions

2018-03-04 Thread Robert Jeffares

sent direct

R


On 05/03/18 11:57, c...@elfpen.com wrote:
Can you send us a screenshot of RDAirPlay with the portion of your log 
that shows


what played and what was skipped?


(Actually, I'm not sure if this mailing list will support attachments.)




On 03/04/2018 06:08 AM, D. B. .B. B. wrote:

Hi,

I am working with Rivendell for a community radio station and have 
encountered some issues with tracks - songs and shows - being 
interrupted halfway through. It sometimes happens that a longer 
segment is simply interrupted without warning and another starts 
playing. This happens for both hard time and non-hard time events. 
Can one make an event uninterruptable? I try to schedule as closely 
as I can but we have very different lengths of songs in our library, 
and it seems that often instead of skipping the next song it will 
jump into it interrupting. This is a serious concern because we have 
some original content that has now been twice interrupted mid-air 
without warning. What could be the cause of this and how can this be 
avoided?


Thanks,

David B.




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


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


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


Re: [RDD] Help - Questions on scheduling, interruptions

2018-03-04 Thread c...@elfpen.com
Can you send us a screenshot of RDAirPlay with the portion of your log 
that shows


what played and what was skipped?


(Actually, I'm not sure if this mailing list will support attachments.)




On 03/04/2018 06:08 AM, D. B. .B. B. wrote:

Hi,

I am working with Rivendell for a community radio station and have 
encountered some issues with tracks - songs and shows - being 
interrupted halfway through. It sometimes happens that a longer 
segment is simply interrupted without warning and another starts 
playing. This happens for both hard time and non-hard time events. Can 
one make an event uninterruptable? I try to schedule as closely as I 
can but we have very different lengths of songs in our library, and it 
seems that often instead of skipping the next song it will jump into 
it interrupting. This is a serious concern because we have some 
original content that has now been twice interrupted mid-air without 
warning. What could be the cause of this and how can this be avoided?


Thanks,

David B.




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


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


Re: [RDD] Help - Questions on scheduling, interruptions

2018-03-04 Thread Robert Jeffares

Hi David,

sounds like you have events scheduled after the currently playing event 
that are set to start at a time which is before the conclusion of the 
previous event.


Look in the EVENT immediately following the things that get interrupted 
and see if it is set to Hard Start Time and start Immediately or Wait up 
to x minutes.


Most events don't need to use hard start time.

make sure there is enough time to play the event before the next fixed 
item like news. We have a problem at one station where scheduled events 
are produced longer then the allocated 30 minute slot, our solution was 
to start them at :20 instead of :40 and run some fill material to the hour.


If you look at the played log you will soon see whisy EVENT is pre 
empting the preceding programme segment



regards


Robert.


On 05/03/18 01:08, D. B. .B. B. wrote:

Hi,

I am working with Rivendell for a community radio station and have 
encountered some issues with tracks - songs and shows - being 
interrupted halfway through. It sometimes happens that a longer 
segment is simply interrupted without warning and another starts 
playing. This happens for both hard time and non-hard time events. Can 
one make an event uninterruptable? I try to schedule as closely as I 
can but we have very different lengths of songs in our library, and it 
seems that often instead of skipping the next song it will jump into 
it interrupting. This is a serious concern because we have some 
original content that has now been twice interrupted mid-air without 
warning. What could be the cause of this and how can this be avoided?


Thanks,

David B.




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


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


Re: [RDD] Help!! RDimport broken after upgrade to 2.17!! - Working Again

2017-10-21 Thread Fred Gleason
On Oct 20, 2017, at 14:11, Tom Van Gorkom  wrote:

> I cannot explain what was wrong but I first rebooted the server and found an 
> fs export issue that was on a shared drive not related to Rivendell. The 
> manual import/export began to funtion on the clients but not the dropbox yet. 
> After correcting the fs export error and re-exporting the fs list, dropbox 
> began working.

Sounds like it was a file access/permissions issue.  Glad you got it sorted!


> The other thing we did was to pray over it... and around here that can make a 
> big difference. 

Oh my, yes!  And not just around there…

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] Help!! RDimport broken after upgrade to 2.17!!

2017-10-20 Thread Tom Van Gorkom
More info This is a client-server system and even the rdimport icon in
/usr/bin is unresponsive. Please help. Thanks


Tom Van Gorkom
Radio Esperanza Engineering, KRIO AM/FM, KOIR FM
Office: 956-380-8150
Cell: 865-803-7427

Rio Grande Bible Institute
4300 S US Hwy 281
Edinburg, TX 78539

On Fri, Oct 20, 2017 at 10:28 AM, Tom Van Gorkom 
wrote:

> Any ideas for what to look for and how to start the impor/export functions
> on 2.17 on Centos 6.9?
>
> I can't even import manually. The cart button does nothing and drop box
> does nothing.
>
> Tom Van Gorkom
> Radio Esperanza Engineering, KRIO AM/FM, KOIR FM
> Office: 956-380-8150 <(956)%20380-8150>
> Cell: 865-803-7427 <(865)%20803-7427>
>
> Rio Grande Bible Institute
> 4300 S US Hwy 281
> Edinburg, TX 78539
>
___
Rivendell-dev mailing list
Rivendell-dev@lists.rivendellaudio.org
http://caspian.paravelsystems.com/mailman/listinfo/rivendell-dev


Re: [RDD] Help with Now and next and Mysql Backup

2017-03-04 Thread Ivan James



Drew

%br
(What is this?)
By the way  what arethe codes that need to be at the end of the 
sequence. I will let the streaming service now what we need to use. They 
can tell me what can work. Are you using Rivendell for over air waves 
like a FM station or Online or Both.







On 2017-03-03 07:28, drew Roberts wrote:

Ivan,

this first bit may not be helpful enough but let's check everything.
(A lot here and a bit more inline below it.)

So, you are sending:

%n - The currently-playing CART NUMBER
(Any reason for listeners to know which cart is playing?)

%g - The currently-playing GROUP NAME
(Music, Traffic, etc.)

%h - The length of the currently playing cut, in mS.
(That is in milliseconds, right?)

%t - The currently-playing TITLE field
(To be expected.)

%a - The currently-playing ARTIST field
(To be expected.)

%y - The currently-playing YEAR field
(OK, I have never sent this but no problem.)

%br
(What is this?)

Do you mean to put:

%b - The currently-playing LABEL field
(The record label, right)

%r - A "Unix" style newline (naked ASCII 10)
(To end the format string.)

On Thu, Mar 2, 2017 at 10:42 PM, Ivan James
 wrote:


Drew,

Here is my set up
RD Airplay> Now and Next Parameters
IP> Is the IP Of the Machine I have Streaming Encoder


So, you have a box on site that is a streaming encoder? Or is this box
offsite?


UDP String %n|%g|%h|%t|%a|%y|%br ( This is what the Streaming
service said to use)


I have never seen anyone putting this detail of metadata in their
stream but fine if you need it and it works. (Except see above.)


UDP Is set to 6000


I think you mean UDP Port is 6000. ok.


Manage Groups> Music and other Music like Groups NOW and Next is
(CHECKED Enabled) Transmit Now and Next Data
That's my setup


Looks fine.

Have you tried setting up a local netcat on a different port and
changing the UDP port temporarily and sending to that instead of your
streaming encoder just to see what happens?


How do you yo have yours configured


I just checked my main machine and think I am using rlm's there but
will dig a little further if we don't sort it.


Thanks for your Help


No problem.

all the best,

drew


On 2017-03-02 10:55, drew Roberts wrote:

Ivan,

if you will document your now and next setup, I will take a shot at
helping you to get it working.

all the best,

drew

On Thu, Mar 2, 2017 at 9:19 AM, Ivan James
 wrote:

Does anyone have any suggestion on my issue with Now and next.
Thanks

On 2017-02-24 12:08, Ivan James wrote:

1. Now and next Issue RV2.5.5 I can't seem to set up now and next.
I
and trying to get now and next to send data out I have configure
it
according to data that I found In wiki and in Threads and its not
working. to this project well ill be feeding Stream to internet
encoder and also a RDBS Encoder.
Does someone have a step by step guide on configuration guide.

2. We also recently develop another issue pertaining to making
backups
on RDadmin. We get the error Unable to create backup.
I  also have a couple of questions Would it be possible to use
Phpmyadmin to look at the database and make backups. A friend
suggested to use Mysql ODBC connector. I Think PHPMyadmin would be
more practical.

3 we also notice that Centos made the partition that The OS is at
Quite Small.I need to know if te music is stored in the same
partition
or in another partition. Iam thinking have anothe server so we can
do
production.

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

--

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


 --

Bahamain Or Nuttin - http://www.bahamianornuttin.com [2] [2]

Links:
--
[1] http://caspian.paravelsystems.com/mailman/listinfo/rivendell-dev
[1]
[2] http://www.bahamianornuttin.com/ [3]

--

Bahamain Or Nuttin - http://www.bahamianornuttin.com [3]

Links:
--
[1] http://caspian.paravelsystems.com/mailman/listinfo/rivendell-dev
[2] http://www.bahamianornuttin.com
[3] http://www.bahamianornuttin.com/


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


Re: [RDD] Help with Now and next and Mysql Backup

2017-03-03 Thread Cowboy
On Fri, 3 Mar 2017 11:07:22 -0500
drew Roberts  wrote:

> >> %br
> >> (What is this?)
> >>  
> >   This is what the code the streaming Service we use told me to add
> >  
> 
> Then I suggest you ask them what that is as I can't help you with
> that.
> 
> >
> > What is your set up.
> > I am using secure net streaming service

 CAUTION !!

 Securenet is a dyed-in-the-wool M$ Windows shop.

 They also have some issue I've never quite gotten explained, in spite
 of being a SecureNet partner myself...

 They have a Rivendell compatibility module from who-knows-where
 THAT IS BROKEN !
 If you tell them you are using Rivendell for program aux data,
 ( now and next, and such ) they will use their broken module and
 it will not work.
 Tell them instead to use the PAD module, and it will work fine.

 This, of course, is after they tell you that you can not encode a
 stream on anything except M$ windows...

 This all has to do with lawyers, the Clintons, and their ilk.
 The CRAP... er ... ( congress re-named it so people won't think
 it's crap ) CARP thing where the librarian makes law about paying
 lawyers representing the US music industry.

-- 
Cowboy

http://cowboy.cwf1.com


The trouble with heart disease is that the first symptom is often hard
to deal with: death.
-- Michael Phelps

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


Re: [RDD] Help with Now and next and Mysql Backup

2017-03-03 Thread drew Roberts
Ivan,

On Fri, Mar 3, 2017 at 10:01 AM, Ivan James 
wrote:

> On 2017-03-03 07:28, drew Roberts wrote:
>
>> Ivan,
>>
>> this first bit may not be helpful enough but let's check everything.
>> (A lot here and a bit more inline below it.)
>>
>> So, you are sending:
>>
>> %n - The currently-playing CART NUMBER
>> (Any reason for listeners to know which cart is playing?)
>>
>> %g - The currently-playing GROUP NAME
>> (Music, Traffic, etc.)
>>
>> %h - The length of the currently playing cut, in mS.
>> (That is in milliseconds, right?)
>>
>> %t - The currently-playing TITLE field
>> (To be expected.)
>>
>> %a - The currently-playing ARTIST field
>> (To be expected.)
>>
>> %y - The currently-playing YEAR field
>> (OK, I have never sent this but no problem.)
>>
>> %br
>> (What is this?)
>>
>   This is what the code the streaming Service we use told me to add
>

Then I suggest you ask them what that is as I can't help you with that.

>
> What is your set up.
> I am using secure net streaming service
>
>
>> Do you mean to put:
>>
>> %b - The currently-playing LABEL field
>> (The record label, right)
>>
>> %r - A "Unix" style newline (naked ASCII 10)
>> (To end the format string.)
>>
>
You don't seem to have addressed the other questions / issues in my reply.

all the best,

drew


>
>>
> Drew,
>>>
>>> Here is my set up
>>> RD Airplay> Now and Next Parameters
>>> IP> Is the IP Of the Machine I have Streaming Encoder
>>>
>>
>> So, you have a box on site that is a streaming encoder? Or is this box
>> offsite?
>>
>> UDP String %n|%g|%h|%t|%a|%y|%br ( This is what the Streaming
>>> service said to use)
>>>
>>
>> I have never seen anyone putting this detail of metadata in their
>> stream but fine if you need it and it works. (Except see above.)
>>
>> UDP Is set to 6000
>>>
>>
>> I think you mean UDP Port is 6000. ok.
>>
>> Manage Groups> Music and other Music like Groups NOW and Next is
>>> (CHECKED Enabled) Transmit Now and Next Data
>>> That's my setup
>>>
>>
>> Looks fine.
>>
>> Have you tried setting up a local netcat on a different port and
>> changing the UDP port temporarily and sending to that instead of your
>> streaming encoder just to see what happens?
>>
>> How do you yo have yours configured
>>>
>>
>> I just checked my main machine and think I am using rlm's there but
>> will dig a little further if we don't sort it.
>>
>> Thanks for your Help
>>>
>>
>> No problem.
>>
>> all the best,
>>
>> drew
>>
>> On 2017-03-02 10:55, drew Roberts wrote:
>>>
>>> Ivan,
>>>
>>> if you will document your now and next setup, I will take a shot at
>>> helping you to get it working.
>>>
>>> all the best,
>>>
>>> drew
>>>
>>> On Thu, Mar 2, 2017 at 9:19 AM, Ivan James
>>>  wrote:
>>>
>>> Does anyone have any suggestion on my issue with Now and next.
>>> Thanks
>>>
>>> On 2017-02-24 12:08, Ivan James wrote:
>>>
>>> 1. Now and next Issue RV2.5.5 I can't seem to set up now and next.
>>> I
>>> and trying to get now and next to send data out I have configure
>>> it
>>> according to data that I found In wiki and in Threads and its not
>>> working. to this project well ill be feeding Stream to internet
>>> encoder and also a RDBS Encoder.
>>> Does someone have a step by step guide on configuration guide.
>>>
>>> 2. We also recently develop another issue pertaining to making
>>> backups
>>> on RDadmin. We get the error Unable to create backup.
>>> I  also have a couple of questions Would it be possible to use
>>> Phpmyadmin to look at the database and make backups. A friend
>>> suggested to use Mysql ODBC connector. I Think PHPMyadmin would be
>>> more practical.
>>>
>>> 3 we also notice that Centos made the partition that The OS is at
>>> Quite Small.I need to know if te music is stored in the same
>>> partition
>>> or in another partition. Iam thinking have anothe server so we can
>>> do
>>> production.
>>>
>>> Thanks
>>> ___
>>> Rivendell-dev mailing list
>>> Rivendell-dev@lists.rivendellaudio.org
>>> http://caspian.paravelsystems.com/mailman/listinfo/rivendell-dev [1]
>>> [1]
>>>
>>> --
>>>
>>> ___
>>> Rivendell-dev mailing list
>>> Rivendell-dev@lists.rivendellaudio.org
>>> http://caspian.paravelsystems.com/mailman/listinfo/rivendell-dev [1]
>>> [1]
>>>
>>
>>  --
>>
>> Bahamain Or Nuttin - http://www.bahamianornuttin.com [2] [2]
>>
>> Links:
>> --
>> [1] http://caspian.paravelsystems.com/mailman/listinfo/rivendell-dev
>> [1]
>> [2] http://www.bahamianornuttin.com/ [3]
>>
>> --
>>
>> Bahamain Or Nuttin - http://www.bahamianornuttin.com [3]
>>
>> Links:
>> --
>> [1] http://caspian.paravelsystems.com/mailman/listinfo/rivendell-dev
>> [2] http://www.bahamianornuttin.com
>> [3] http://www.bahamianornuttin.com/
>>
>
> -
>



-- 
Bahamain Or Nuttin - http://www.bahamianornuttin.com

___
Rivendell-dev mailing list
Rivendell-dev@lists.rivendellaudio.org
http://caspian.p

Re: [RDD] Help with Now and next and Mysql Backup

2017-03-03 Thread Ivan James

On 2017-03-03 07:28, drew Roberts wrote:

Ivan,

this first bit may not be helpful enough but let's check everything.
(A lot here and a bit more inline below it.)

So, you are sending:

%n - The currently-playing CART NUMBER
(Any reason for listeners to know which cart is playing?)

%g - The currently-playing GROUP NAME
(Music, Traffic, etc.)

%h - The length of the currently playing cut, in mS.
(That is in milliseconds, right?)

%t - The currently-playing TITLE field
(To be expected.)

%a - The currently-playing ARTIST field
(To be expected.)

%y - The currently-playing YEAR field
(OK, I have never sent this but no problem.)

%br
(What is this?)

  This is what the code the streaming Service we use told me to add

What is your set up.
I am using secure net streaming service



Do you mean to put:

%b - The currently-playing LABEL field
(The record label, right)

%r - A "Unix" style newline (naked ASCII 10)
(To end the format string.)




Drew,

Here is my set up
RD Airplay> Now and Next Parameters
IP> Is the IP Of the Machine I have Streaming Encoder


So, you have a box on site that is a streaming encoder? Or is this box
offsite?


UDP String %n|%g|%h|%t|%a|%y|%br ( This is what the Streaming
service said to use)


I have never seen anyone putting this detail of metadata in their
stream but fine if you need it and it works. (Except see above.)


UDP Is set to 6000


I think you mean UDP Port is 6000. ok.


Manage Groups> Music and other Music like Groups NOW and Next is
(CHECKED Enabled) Transmit Now and Next Data
That's my setup


Looks fine.

Have you tried setting up a local netcat on a different port and
changing the UDP port temporarily and sending to that instead of your
streaming encoder just to see what happens?


How do you yo have yours configured


I just checked my main machine and think I am using rlm's there but
will dig a little further if we don't sort it.


Thanks for your Help


No problem.

all the best,

drew


On 2017-03-02 10:55, drew Roberts wrote:

Ivan,

if you will document your now and next setup, I will take a shot at
helping you to get it working.

all the best,

drew

On Thu, Mar 2, 2017 at 9:19 AM, Ivan James
 wrote:

Does anyone have any suggestion on my issue with Now and next.
Thanks

On 2017-02-24 12:08, Ivan James wrote:

1. Now and next Issue RV2.5.5 I can't seem to set up now and next.
I
and trying to get now and next to send data out I have configure
it
according to data that I found In wiki and in Threads and its not
working. to this project well ill be feeding Stream to internet
encoder and also a RDBS Encoder.
Does someone have a step by step guide on configuration guide.

2. We also recently develop another issue pertaining to making
backups
on RDadmin. We get the error Unable to create backup.
I  also have a couple of questions Would it be possible to use
Phpmyadmin to look at the database and make backups. A friend
suggested to use Mysql ODBC connector. I Think PHPMyadmin would be
more practical.

3 we also notice that Centos made the partition that The OS is at
Quite Small.I need to know if te music is stored in the same
partition
or in another partition. Iam thinking have anothe server so we can
do
production.

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

--

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


 --

Bahamain Or Nuttin - http://www.bahamianornuttin.com [2] [2]

Links:
--
[1] http://caspian.paravelsystems.com/mailman/listinfo/rivendell-dev
[1]
[2] http://www.bahamianornuttin.com/ [3]

--

Bahamain Or Nuttin - http://www.bahamianornuttin.com [3]

Links:
--
[1] http://caspian.paravelsystems.com/mailman/listinfo/rivendell-dev
[2] http://www.bahamianornuttin.com
[3] http://www.bahamianornuttin.com/


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


Re: [RDD] Help with Now and next and Mysql Backup

2017-03-03 Thread drew Roberts
Ivan,

this first bit may not be helpful enough but let's check everything. (A lot
here and a bit more inline below it.)

So, you are sending:

%n - The currently-playing CART NUMBER
(Any reason for listeners to know which cart is playing?)

%g - The currently-playing GROUP NAME
(Music, Traffic, etc.)

%h - The length of the currently playing cut, in mS.
(That is in milliseconds, right?)

%t - The currently-playing TITLE field
(To be expected.)

%a - The currently-playing ARTIST field
(To be expected.)

%y - The currently-playing YEAR field
(OK, I have never sent this but no problem.)

%br
(What is this?)

Do you mean to put:

%b - The currently-playing LABEL field
(The record label, right)

%r - A "Unix" style newline (naked ASCII 10)
(To end the format string.)


On Thu, Mar 2, 2017 at 10:42 PM, Ivan James 
wrote:

> Drew,
>
>
> Here is my set up
> RD Airplay> Now and Next Parameters
> IP> Is the IP Of the Machine I have Streaming Encoder
>

So, you have a box on site that is a streaming encoder? Or is this box
offsite?


> UDP String %n|%g|%h|%t|%a|%y|%br ( This is what the Streaming service said
> to use)
>

I have never seen anyone putting this detail of metadata in their stream
but fine if you need it and it works. (Except see above.)


> UDP Is set to 6000
>

I think you mean UDP Port is 6000. ok.


> Manage Groups> Music and other Music like Groups NOW and Next is  (CHECKED
> Enabled) Transmit Now and Next Data
> That's my setup
>

Looks fine.

Have you tried setting up a local netcat on a different port and changing
the UDP port temporarily and sending to that instead of your streaming
encoder just to see what happens?


>
> How do you yo have yours configured
>

I just checked my main machine and think I am using rlm's there but will
dig a little further if we don't sort it.

>
> Thanks for your Help
>
>
> No problem.

all the best,

drew



>
>
>
>
> On 2017-03-02 10:55, drew Roberts wrote:
>
>> Ivan,
>>
>> if you will document your now and next setup, I will take a shot at
>> helping you to get it working.
>>
>> all the best,
>>
>> drew
>>
>> On Thu, Mar 2, 2017 at 9:19 AM, Ivan James
>>  wrote:
>>
>> Does anyone have any suggestion on my issue with Now and next.
>>> Thanks
>>>
>>> On 2017-02-24 12:08, Ivan James wrote:
>>>
>>> 1. Now and next Issue RV2.5.5 I can't seem to set up now and next.
 I
 and trying to get now and next to send data out I have configure
 it
 according to data that I found In wiki and in Threads and its not
 working. to this project well ill be feeding Stream to internet
 encoder and also a RDBS Encoder.
 Does someone have a step by step guide on configuration guide.

 2. We also recently develop another issue pertaining to making
 backups
 on RDadmin. We get the error Unable to create backup.
 I  also have a couple of questions Would it be possible to use
 Phpmyadmin to look at the database and make backups. A friend
 suggested to use Mysql ODBC connector. I Think PHPMyadmin would be
 more practical.

 3 we also notice that Centos made the partition that The OS is at
 Quite Small.I need to know if te music is stored in the same
 partition
 or in another partition. Iam thinking have anothe server so we can
 do
 production.

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

>>>
>>> --
>>>
>>> ___
>>> Rivendell-dev mailing list
>>> Rivendell-dev@lists.rivendellaudio.org
>>> http://caspian.paravelsystems.com/mailman/listinfo/rivendell-dev [1]
>>>
>>
>> --
>>
>> Bahamain Or Nuttin - http://www.bahamianornuttin.com [2]
>>
>> Links:
>> --
>> [1] http://caspian.paravelsystems.com/mailman/listinfo/rivendell-dev
>> [2] http://www.bahamianornuttin.com/
>>
>
>


-- 
Bahamain Or Nuttin - http://www.bahamianornuttin.com

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


Re: [RDD] Help with Now and next and Mysql Backup

2017-03-02 Thread Ivan James

Drew,


Here is my set up
RD Airplay> Now and Next Parameters
IP> Is the IP Of the Machine I have Streaming Encoder
UDP String %n|%g|%h|%t|%a|%y|%br ( This is what the Streaming service 
said to use)

UDP Is set to 6000
Manage Groups> Music and other Music like Groups NOW and Next is  
(CHECKED Enabled) Transmit Now and Next Data

That's my setup

How do you yo have yours configured

Thanks for your Help





On 2017-03-02 10:55, drew Roberts wrote:

Ivan,

if you will document your now and next setup, I will take a shot at
helping you to get it working.

all the best,

drew

On Thu, Mar 2, 2017 at 9:19 AM, Ivan James
 wrote:


Does anyone have any suggestion on my issue with Now and next.
Thanks

On 2017-02-24 12:08, Ivan James wrote:


1. Now and next Issue RV2.5.5 I can't seem to set up now and next.
I
and trying to get now and next to send data out I have configure
it
according to data that I found In wiki and in Threads and its not
working. to this project well ill be feeding Stream to internet
encoder and also a RDBS Encoder.
Does someone have a step by step guide on configuration guide.

2. We also recently develop another issue pertaining to making
backups
on RDadmin. We get the error Unable to create backup.
I  also have a couple of questions Would it be possible to use
Phpmyadmin to look at the database and make backups. A friend
suggested to use Mysql ODBC connector. I Think PHPMyadmin would be
more practical.

3 we also notice that Centos made the partition that The OS is at
Quite Small.I need to know if te music is stored in the same
partition
or in another partition. Iam thinking have anothe server so we can
do
production.

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


--

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


--

Bahamain Or Nuttin - http://www.bahamianornuttin.com [2]

Links:
--
[1] http://caspian.paravelsystems.com/mailman/listinfo/rivendell-dev
[2] http://www.bahamianornuttin.com/


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


Re: [RDD] Help with Now and next and Mysql Backup

2017-03-02 Thread drew Roberts
Ivan,

if you will document your now and next setup, I will take a shot at helping
you to get it working.

all the best,

drew

On Thu, Mar 2, 2017 at 9:19 AM, Ivan James 
wrote:

> Does anyone have any suggestion on my issue with Now and next.
> Thanks
>
>
> On 2017-02-24 12:08, Ivan James wrote:
>
>> 1. Now and next Issue RV2.5.5 I can't seem to set up now and next. I
>> and trying to get now and next to send data out I have configure it
>> according to data that I found In wiki and in Threads and its not
>> working. to this project well ill be feeding Stream to internet
>> encoder and also a RDBS Encoder.
>> Does someone have a step by step guide on configuration guide.
>>
>> 2. We also recently develop another issue pertaining to making backups
>> on RDadmin. We get the error Unable to create backup.
>> I  also have a couple of questions Would it be possible to use
>> Phpmyadmin to look at the database and make backups. A friend
>> suggested to use Mysql ODBC connector. I Think PHPMyadmin would be
>> more practical.
>>
>> 3 we also notice that Centos made the partition that The OS is at
>> Quite Small.I need to know if te music is stored in the same partition
>> or in another partition. Iam thinking have anothe server so we can do
>> production.
>>
>> Thanks
>> ___
>> Rivendell-dev mailing list
>> Rivendell-dev@lists.rivendellaudio.org
>> http://caspian.paravelsystems.com/mailman/listinfo/rivendell-dev
>>
>
> --
>
>
>
>
>
> ___
> Rivendell-dev mailing list
> Rivendell-dev@lists.rivendellaudio.org
> http://caspian.paravelsystems.com/mailman/listinfo/rivendell-dev
>



-- 
Bahamain Or Nuttin - http://www.bahamianornuttin.com

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


Re: [RDD] Help with Now and next and Mysql Backup

2017-03-02 Thread Ivan James

Does anyone have any suggestion on my issue with Now and next.
Thanks


On 2017-02-24 12:08, Ivan James wrote:

1. Now and next Issue RV2.5.5 I can't seem to set up now and next. I
and trying to get now and next to send data out I have configure it
according to data that I found In wiki and in Threads and its not
working. to this project well ill be feeding Stream to internet
encoder and also a RDBS Encoder.
Does someone have a step by step guide on configuration guide.

2. We also recently develop another issue pertaining to making backups
on RDadmin. We get the error Unable to create backup.
I  also have a couple of questions Would it be possible to use
Phpmyadmin to look at the database and make backups. A friend
suggested to use Mysql ODBC connector. I Think PHPMyadmin would be
more practical.

3 we also notice that Centos made the partition that The OS is at
Quite Small.I need to know if te music is stored in the same partition
or in another partition. Iam thinking have anothe server so we can do
production.

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


--





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


Re: [RDD] Help with Now and next and Mysql Backup

2017-02-26 Thread Robert Jeffares

Hi Ivan,


This script run each day at a convenient time does the backup and housework

___

#! /bin/bash
#first erase old file from a week ago
ERASE='DatabaseBackup'$(date --date '7 days ago' +%h-%d-%y)
echo $ERASE
rm -f "/home/rd/dropbox/$ERASE.sql"
#now dump todays file
NOW='DatabaseBackup'$(date +%h-%d-%y)
echo $NOW
mysqldump -u root Rivendell --lock-tables=false >/home/rd/dropbox/$NOW.sql

# optional

 /usr/bin/mail -s "backup completed" you@your.email || /usr/bin/mail -s 
"backup failed" you@your.email


___


regards


Robert





On 25/02/17 06:08, Ivan James wrote:




1. Now and next Issue RV2.5.5 I can't seem to set up now and next. I 
and trying to get now and next to send data out I have configure it 
according to data that I found In wiki and in Threads and its not 
working. to this project well ill be feeding Stream to internet 
encoder and also a RDBS Encoder.

Does someone have a step by step guide on configuration guide.

2. We also recently develop another issue pertaining to making backups 
on RDadmin. We get the error Unable to create backup.
I  also have a couple of questions Would it be possible to use 
Phpmyadmin to look at the database and make backups. A friend 
suggested to use Mysql ODBC connector. I Think PHPMyadmin would be 
more practical.


3 we also notice that Centos made the partition that The OS is at 
Quite Small.I need to know if te music is stored in the same partition 
or in another partition. Iam thinking have anothe server so we can do 
production.


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


--
*Communication Consultants*
64 Warner Park Avenue

Laingholm

Auckland 0604

09 8176358

0221693124

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


Re: [RDD] Help with Now and next and Mysql Backup

2017-02-26 Thread Robert Jeffares

Ivan,

quick notes for Now & Next:.

Make sure all the GROUPS you want to include in Now & Next have 
"Transmit Now & Next' enabled.


We have a streaming server at 192.168.0.30 using Darkice and Icecast on 
port 8000


The data is sent using rlm_icecast2.conf which has been copied from the 
help files to /home/rd/rlm_icecast2.conf


Modified to suit, and the "RDAdmin>Manage Hosts>[select 
host]>RDAirplay>Edit Now & Next Data" set to use /home/rd/rlm_icecast2.conf



rlm_icecast2.conf

; Section Header
[Icecast1]

; User Name
Username=admin<-- from icecast

; Password
Password=letmein<-- from icecast

; Host Name
Hostname=192.168.0.30<-- address of server

; Host Port
Tcpport=8000

; Mountpoint
Mountpoint=/thewirelessstation.mp3

; Format String.  The metadata to be sent each time RDAirPlay changes
;
FormatString=%a-%t-%y

; Log Selection
MasterLog=Yes
Aux1Log=No
Aux2Log=No

You need to set it up and restart


regards


Robert


On 25/02/17 06:08, Ivan James wrote:




1. Now and next Issue RV2.5.5 I can't seem to set up now and next. I 
and trying to get now and next to send data out I have configure it 
according to data that I found In wiki and in Threads and its not 
working. to this project well ill be feeding Stream to internet 
encoder and also a RDBS Encoder.

Does someone have a step by step guide on configuration guide.

2. We also recently develop another issue pertaining to making backups 
on RDadmin. We get the error Unable to create backup.
I  also have a couple of questions Would it be possible to use 
Phpmyadmin to look at the database and make backups. A friend 
suggested to use Mysql ODBC connector. I Think PHPMyadmin would be 
more practical.


3 we also notice that Centos made the partition that The OS is at 
Quite Small.I need to know if te music is stored in the same partition 
or in another partition. Iam thinking have anothe server so we can do 
production.


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


--
*Communication Consultants*
64 Warner Park Avenue

Laingholm

Auckland 0604

09 8176358

0221693124

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


Re: [RDD] Help with Now and next and Mysql Backup

2017-02-26 Thread Robert Jeffares


Ivan

music is stored at /var/snd/

if you # df -H

you will get a list of partitions and ideally /var/snd is on it's own on 
it's own drive. 2TB is good 4TB is better; some people have 
substantially bigger drives using Raid.


Doing production on the playout machine can be tricky if you don't have 
enough ins and outs. You can use Jack to feed Glasscoder which will 
create the stream in a virtual environment that works well. [yum install 
glasscoder ]


It's still good practice to have a dedicated playout machine, and a 
record/edit/download hack machine which you use to do production.



regards


Robert


On 25/02/17 06:08, Ivan James wrote:




1. Now and next Issue RV2.5.5 I can't seem to set up now and next. I 
and trying to get now and next to send data out I have configure it 
according to data that I found In wiki and in Threads and its not 
working. to this project well ill be feeding Stream to internet 
encoder and also a RDBS Encoder.

Does someone have a step by step guide on configuration guide.

2. We also recently develop another issue pertaining to making backups 
on RDadmin. We get the error Unable to create backup.
I  also have a couple of questions Would it be possible to use 
Phpmyadmin to look at the database and make backups. A friend 
suggested to use Mysql ODBC connector. I Think PHPMyadmin would be 
more practical.


3 we also notice that Centos made the partition that The OS is at 
Quite Small.I need to know if te music is stored in the same partition 
or in another partition. Iam thinking have anothe server so we can do 
production.


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


--
*Communication Consultants*
64 Warner Park Avenue

Laingholm

Auckland 0604

09 8176358

0221693124

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


Re: [RDD] Help with Now and next and Mysql Backup

2017-02-26 Thread Ivan James

I don't see My post on the thread on The Rev-dell message board

Thanks TOM for sending some information my way I am still not seeing the 
packets out of rivendell.
I am not sure if the now and next is working I am Monitoring my network 
and I don't see rivendell sending out any UDP Packets any sugesstions ? 
I have Now and next configured in The Admin panel under admin 
User-Manage hosts and with MANAGEGROUPS


Thanks





On 2017-02-24 12:08, Ivan James wrote:

1. Now and next Issue RV2.5.5 I can't seem to set up now and next. I
and trying to get now and next to send data out I have configure it
according to data that I found In wiki and in Threads and its not
working. to this project well ill be feeding Stream to internet
encoder and also a RDBS Encoder.
Does someone have a step by step guide on configuration guide.

2. We also recently develop another issue pertaining to making backups
on RDadmin. We get the error Unable to create backup.
I  also have a couple of questions Would it be possible to use
Phpmyadmin to look at the database and make backups. A friend
suggested to use Mysql ODBC connector. I Think PHPMyadmin would be
more practical.

3 we also notice that Centos made the partition that The OS is at
Quite Small.I need to know if te music is stored in the same partition
or in another partition. Iam thinking have anothe server so we can do
production.

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


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


Re: [RDD] Help with SQL command

2016-12-13 Thread ermina
there you go (script in attachement). Remove the txt extension and 
execute on the command line with php. It will generate a txt file in the 
directory where you put and execute the script.

The SQL request also gets the play count and the date of import if needed.

Cheers,

. e

On 12/13/2016 07:51 AM, Morten Krarup Nielsen wrote:

Hi.

I need to output a text file that lists all my music from the SQL
database, can anyone help me?

It should include the following:

1. cart#
2. Artist name
3. Title name
4. Album name
5. Scheduler code

encoding should be UTF-8

-  each line contains of one entry for one file

-  each line consists of fields which are TAB separated (or
any other seperator)

-  each line is separated by LF or CRLF

Thank you!

Kind regards,

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

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


Re: [RDD] Help: Steps to compile Rivendell?

2015-03-02 Thread Jim Stewart
Oh, I DID do this, than ran ./configure again with same results


From: Lorne Tyndale 
Sent: Sunday, March 01, 2015 10:14 AM
To: rivendell-dev@lists.rivendellaudio.org
Subject: RE: [RDD] Help: Steps to compile Rivendell?

Hi,

As I recall on the git sources, the first step is to run:

autogen.sh

before running the ./configure


Lorne Tyndale

>
> Okay, for fun I thought I'd try compiling Rivendell for the new Raspberry Pi 
> 2 (the quad core one).
>
> I downloaded the current "GIT" sources today, ran ./configure a bunch of 
> times until it was happy that I installed all the prerequist packages, then 
> it got to where it started building all the "Makefiles" but when it got to 
> the debian directory, it said:
>
> config.status: error: cannot find input file: `debian/Makefile.in'
>
> Sure enough there isn't such a file.  What do I do? or What didn't I do right?
> ___
> Rivendell-dev mailing list
> Rivendell-dev@lists.rivendellaudio.org
> http://caspian.paravelsystems.com/mailman/listinfo/rivendell-dev
___
Rivendell-dev mailing list
Rivendell-dev@lists.rivendellaudio.org
http://caspian.paravelsystems.com/mailman/listinfo/rivendell-dev


Re: [RDD] Help: Steps to compile Rivendell?

2015-03-01 Thread Lorne Tyndale
Hi,

As I recall on the git sources, the first step is to run:

autogen.sh

before running the ./configure


Lorne Tyndale

> 
> Okay, for fun I thought I'd try compiling Rivendell for the new Raspberry Pi 
> 2 (the quad core one). 
> 
> I downloaded the current "GIT" sources today, ran ./configure a bunch of 
> times until it was happy that I installed all the prerequist packages, then 
> it got to where it started building all the "Makefiles" but when it got to 
> the debian directory, it said:
> 
> config.status: error: cannot find input file: `debian/Makefile.in'
> 
> Sure enough there isn't such a file.  What do I do? or What didn't I do 
> right?  
> ___
> Rivendell-dev mailing list
> Rivendell-dev@lists.rivendellaudio.org
> http://caspian.paravelsystems.com/mailman/listinfo/rivendell-dev
___
Rivendell-dev mailing list
Rivendell-dev@lists.rivendellaudio.org
http://caspian.paravelsystems.com/mailman/listinfo/rivendell-dev


Re: [RDD] Help! Where's my old shoutcast.conf file? (2.9.3)

2014-09-20 Thread Fred Gleason

On 9/20/14, 11:47 18, Bernardo J Mora wrote:

Upgraded from 2.9.0 to 2.9.3, but (of course?) it points to the new
rivendell folder's sample .conf file which is unconfigured, so eg. my
Now and Next is broken.

Kindly reply off list to this relative newbie.


It's gone, I'm afraid.  Those sample files are just that -- samples. 
They (along with everything else in the documentation directory) get 
updated as part of every new release.


When setting up an RLM, copy the relevant sample file to '/etc/' and 
then customize the copy.  Those will never be touched by updates.


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] Help

2014-01-18 Thread Luigino Bracci
We are using KXStudio 12.04; it's based in Ubuntu Studio, but with
modifications, scripts and applications (like Cadence, Catia, etc.) to ease
the interaction between Pulseaudio and Jack.

Check it in http://kxstudio.sourceforge.net or download the live DVD in
http://kxstudio.sourceforge.net/Downloads
___
Rivendell-dev mailing list
Rivendell-dev@lists.rivendellaudio.org
http://caspian.paravelsystems.com/mailman/listinfo/rivendell-dev


Re: [RDD] Help

2014-01-17 Thread Robert Jeffares

give the appliance installation a go!

from the interface point of view the user will get used to it, and from 
the configuration point of view it's all done!


The desktop is different [ to other linux ] but everything is pretty 
much where you might expect, or in /sbin/ .


I have just updated 2 of 5 machines to 2.7.0, click and open rdadmin.

From a personal point of view it's nice to have the frills, but the 
machine is the same on all platforms


regards

Robert Jeffares


On 18/01/14 11:47, Kelly Williams wrote:
I'm building a system for someone they want me to use Rivendell for a 
online radio. which I have heard that rivendell works better on Redhat 
Enterprise but I like ubuntu much better  and its very friendly. I 
having the problem that pulse and jack not play nice together can you 
point me in the right direction... I have looked into a few guides 
online and still finding the problem with pulse and jack not playing 
nice... I have a heavy linux back ground to I run 90% of the computers 
in my house are linux and 2 windows machines.. Thanks


Kelly


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


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


Re: [RDD] Help

2014-01-17 Thread Lorne Tyndale
Hi,

I've found the best way to avoid the whole pulse / jack mess is to
disable pulse.

Instructions are here:

http://rivendell.tryphon.org/wiki/Ubuntu_-_No_sound/sound_card_in_Rivendell_after_setup

Lorne Tyndale


> I'm building a system for someone they want me to use Rivendell for a
> online radio. which I have heard that rivendell works better on Redhat
> Enterprise but I like ubuntu much better  and its very friendly. I having
> the problem that pulse and jack not play nice together can you point me in
> the right direction... I have looked into a few guides online and still
> finding the problem with pulse and jack not playing nice... I have a heavy
> linux back ground to I run 90% of the computers in my house are linux and 2
> windows machines.. Thanks
> 
> Kelly___
> Rivendell-dev mailing list
> Rivendell-dev@lists.rivendellaudio.org
> http://caspian.paravelsystems.com/mailman/listinfo/rivendell-dev
___
Rivendell-dev mailing list
Rivendell-dev@lists.rivendellaudio.org
http://caspian.paravelsystems.com/mailman/listinfo/rivendell-dev


Re: [RDD] Help

2014-01-17 Thread Wayne Merricks

Hi,

The debian 6 guide works well on Ubuntu and goes through the whole 
pulse and jack thing.


There are some differences in Ubu but nothing major if you've got a 
linux background.  Failing that reply back and I'll work through the 
issues you have.


http://rivendell.tryphon.org/wiki/Rivendell_on_Debian_6

I've used this same guide on Debian 7 with no changes at all (although 
polymer install is a pure from source affair).  Also used it on Ubu 
10.04, 11.10, 12.04 with no real issues past the usual QT4 interference.


Regards,

Wayne

On 2014-01-17 23:05, Cowboy wrote:

On Friday 17 January 2014 05:47:40 pm Kelly Williams wrote:

 I have heard that rivendell works better on Redhat
Enterprise but I like ubuntu much better


 I would say you heard wrong !

 Rivendell works as well on any linux based OS, provided
 that OS meets the requirements of the application.

 Configuration of any application is OS specific, so you
 may have some configuration issues ( as you mention
 with pulse and jack ) but that in no way says that the
 application works better or worse.

 If you wish to avoid OS issues, then choose the supported OS.
 If you don't mind OS issues, then pick any OS you like, and
 configure it to support the application.


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


Re: [RDD] Help

2014-01-17 Thread Cowboy
On Friday 17 January 2014 05:47:40 pm Kelly Williams wrote:
>  I have heard that rivendell works better on Redhat
> Enterprise but I like ubuntu much better

 I would say you heard wrong !

 Rivendell works as well on any linux based OS, provided
 that OS meets the requirements of the application.

 Configuration of any application is OS specific, so you
 may have some configuration issues ( as you mention
 with pulse and jack ) but that in no way says that the
 application works better or worse.

 If you wish to avoid OS issues, then choose the supported OS.
 If you don't mind OS issues, then pick any OS you like, and
 configure it to support the application.

-- 
Cowboy

http://cowboy.cwf1.com

It's raisins that make Post Raisin Bran so raisiny ...

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


Re: [RDD] Help With TeamViewer

2013-11-09 Thread drew Roberts
On Saturday 09 November 2013 11:36:43 Daniel Willson wrote:
> CentOS 5.10 network config lives in
> /etc/sysconfig/network-scripts/ifcfg-eth0 ... I think your instructions are
> Debian/Ubuntu flavored.

Yup, I haven't been on the redhat side of things for many years now. Possibly 
since the 90s sometime.
>
> http://www.centos.org/docs/5/html/Deployment_7VWHrYGX-en-US/ch-networkscrip
>ts.html
>
> Also dropped him a line off-list, but haven't heard back. Hopefully his IT
> guy is taking care of it.

drew
>
> > On Nov 9, 2013, at 10:30 AM, "drew Roberts"  wrote:
> >> On Saturday 09 November 2013 10:56:55 Vonroy Gee wrote:
> >> Hi Guys
> >>
> >> I am only the Brand Manager for our internet station, but I'm having a
> >> difficult time tacking down my IT guy. We are the latest 2.5.4 and no
> >> problem at all Cent05 by the way except for the fact we changed our
> >> internet provider yesterday and so IP address was obviously changed as
> >> well. Now I m not able to get Linux back on the internet, any suggestion
> >> for some one who is in 1st grade to help me get our internet
> >> re-connected. Need your help quickly. Thanks
> >> Vonroy
> >
> > I will try.
> >
> > Do you have a US or Canadian phone number I can call you at?
> >
> > Or can you drop in to irc on Freenode channel #rivendell and post the
> > query again?
> >
> > Can you show the contents of the file:
> >
> > /etc/network/interfaces
> >
> > one way to get it is to go to a terminal and type:
> >
> > cat /etc/network/interfaces
> >
> > and then copy and paste the results here in email.
> >
> > all the best,
> >
> > drew
> > ___
> > Rivendell-dev mailing list
> > Rivendell-dev@lists.rivendellaudio.org
> > http://caspian.paravelsystems.com/mailman/listinfo/rivendell-dev


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


Re: [RDD] Help With TeamViewer

2013-11-09 Thread Jay Ashworth
- Original Message -
> From: "Vonroy Gee" 

> I am only the Brand Manager for our internet station, but I'm having a
> difficult time tacking down my IT guy. We are the latest 2.5.4 and no
> problem at all Cent05 by the way except for the fact we changed our
> internet provider yesterday and so IP address was obviously changed as
> well. Now I m not able to get Linux back on the internet, any
> suggestion for some one who is in 1st grade to help me get our
> internet re-connected. Need your help quickly.

The important question here, since you're an *Internet* radio station, is
this:

Do you send your stream to a Big Streaming Provider, to which your listeners
are pointed?  Or do they *connect directly to you*?

If it's the former, then your problem is just "I'm not connected".

If the latter, it's the much larger "my listeners can't get to me anymore
because my DNS didn't change to match my IP address", which is a problem
you need to fix at the larger strategic level (ie: your IP should never
ever change :-).

Hope you've got it sorted out, and good to hear you're happy with Rivendell.

Cheers,
-- jra
-- 
Jay R. Ashworth  Baylink   j...@baylink.com
Designer The Things I Think   RFC 2100
Ashworth & Associates http://baylink.pitas.com 2000 Land Rover DII
St Petersburg FL USA   #natog  +1 727 647 1274
___
Rivendell-dev mailing list
Rivendell-dev@lists.rivendellaudio.org
http://caspian.paravelsystems.com/mailman/listinfo/rivendell-dev


Re: [RDD] Help With TeamViewer

2013-11-09 Thread Nate Hartmann
Hi Vonroy,

You may have better luck with this question at a general Linux or CentOS
forum ( www.linuxquestions.org or serverfault.com) but here's a go:

It may be as simple as forcing your CentOS system to renew its IP address (
http://exchcluster.blogspot.com/2012/05/centos-6-how-to-renew-dhcp-and-restart.html
).
To do this, log in as root and run...
dhclient -r eth0
... then run...
dhclient eth0

In this case, the network inferface is called eth0, but yours may be named
differently. To see a list of your network interfaces, you can run the
ifconfig command

Best luck,
Nate "DJ Homebody" Hartmann
___
Rivendell-dev mailing list
Rivendell-dev@lists.rivendellaudio.org
http://caspian.paravelsystems.com/mailman/listinfo/rivendell-dev


Re: [RDD] Help With TeamViewer

2013-11-09 Thread Daniel Willson
CentOS 5.10 network config lives in /etc/sysconfig/network-scripts/ifcfg-eth0 
... I think your instructions are Debian/Ubuntu flavored.

http://www.centos.org/docs/5/html/Deployment_7VWHrYGX-en-US/ch-networkscripts.html

Also dropped him a line off-list, but haven't heard back. Hopefully his IT guy 
is taking care of it.

> On Nov 9, 2013, at 10:30 AM, "drew Roberts"  wrote:
> 
>> On Saturday 09 November 2013 10:56:55 Vonroy Gee wrote:
>> Hi Guys
>> 
>> I am only the Brand Manager for our internet station, but I'm having a
>> difficult time tacking down my IT guy. We are the latest 2.5.4 and no
>> problem at all Cent05 by the way except for the fact we changed our
>> internet provider yesterday and so IP address was obviously changed as
>> well. Now I m not able to get Linux back on the internet, any suggestion
>> for some one who is in 1st grade to help me get our internet re-connected.
>> Need your help quickly. Thanks
>> Vonroy
> 
> I will try.
> 
> Do you have a US or Canadian phone number I can call you at?
> 
> Or can you drop in to irc on Freenode channel #rivendell and post the query 
> again?
> 
> Can you show the contents of the file:
> 
> /etc/network/interfaces
> 
> one way to get it is to go to a terminal and type:
> 
> cat /etc/network/interfaces
> 
> and then copy and paste the results here in email.
> 
> all the best,
> 
> drew
> ___
> Rivendell-dev mailing list
> Rivendell-dev@lists.rivendellaudio.org
> http://caspian.paravelsystems.com/mailman/listinfo/rivendell-dev
___
Rivendell-dev mailing list
Rivendell-dev@lists.rivendellaudio.org
http://caspian.paravelsystems.com/mailman/listinfo/rivendell-dev


Re: [RDD] Help With TeamViewer

2013-11-09 Thread drew Roberts
On Saturday 09 November 2013 10:56:55 Vonroy Gee wrote:
> Hi Guys
>
> I am only the Brand Manager for our internet station, but I'm having a
> difficult time tacking down my IT guy. We are the latest 2.5.4 and no
> problem at all Cent05 by the way except for the fact we changed our
> internet provider yesterday and so IP address was obviously changed as
> well. Now I m not able to get Linux back on the internet, any suggestion
> for some one who is in 1st grade to help me get our internet re-connected.
> Need your help quickly. Thanks
> Vonroy

I will try.

Do you have a US or Canadian phone number I can call you at?

Or can you drop in to irc on Freenode channel #rivendell and post the query 
again?

Can you show the contents of the file:

/etc/network/interfaces

one way to get it is to go to a terminal and type:

cat /etc/network/interfaces

and then copy and paste the results here in email.

all the best,

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


Re: [RDD] Help with Broadcast tools SS 8.2 switcher

2012-09-24 Thread Geoff Barkman
Sorry for replying to the old post of mine but I finally solved this.
Turned out that the Serial port I was seeing was a surrogate com port
on the mother board that the bios and motherboard knew about but you
couldn't use because it didn't have the connectors on the MB... the
extra pci card would work if I could successfully compile a kernel
driver... so I took the easy option and used a usb serial adapter and
the switcher works perfectly. It shows up as a /dev/ttyUSB0 device.
It was only with starting the machine with the pci serial card removed
that I realised that the extra card wasn't working. It showed up in
lspci but not as a com port.

Thanks to Frederick and all the others for their help.
Many thanks
Geoff Barkman

On Thu, Jun 14, 2012 at 8:31 AM, Frederick Henderson
 wrote:
> Hi Geoff!
>
> See the Serial Port Troubleshooting on the Wiki for some tips.
>
> http://rivendell.tryphon.org/wiki/Serial_port_Troubleshooting
>
> interceptty proved very valuable to me when I was having problems setting up
> a Unity 4000 satellite receiver on the serial port. It lets you see what is
> actually being sent or if anything is being sent to a serial port.
>
> Also, another tip Rivendell need the full path to the port in the settings
> like so:
>
> /dev/ttyS0
>
> Not just ttyS0
>
> I just took anther look at the wiki article you refered to. I see that the
> serial ports in the linux they were using named them serial0, serial1, etc.
> Each distro seems to have its own naming convention for serial ports. Open a
> terminal and do:
>
> ls /dev/*
>
> Then see if you can find the serial ports listed there.  If not save a copy
> of the listing remove the card. Do the command again with the card out and
> compare the two screenshots.
>
> You will also what to check the BIOS and see if the Serial ports are getting
> an interupt as well.
>
> Greetings,
>
> Frederick
>
>
>
>
> On Tue, 12 Jun 2012 23:27:56 +0200, Geoff Barkman 
> wrote:
>
>> Hi there
>> We have recently added a Broadcast tools switcher to our system.
>> I'm trying to control it via a serial lead from Rivendell.
>> I've followed instructions on the wiki.
>>
>> http://rivendell.tryphon.org/wiki/Network_Switcher_setup_-_Broadcast_Tools_SS_8.2
>>
>> But for some reason the pip light is not working and it isn't switching.
>> It is a brand new machine that is trying to control it, which doesn't
>> have a serial port installed so we added a 2 port serial PCI Adapter.
>> I'm trying work out what the com ports are on it Com 1 Com2 etc.
>> Is there an easy way to work it out?
>> I had thought of controlling the card via an older second computer on
>> our rack, but it would be nice to control it from the one computer so
>> we don't have issues with time synchronization etc.
>>
>> Many thanks
>> Geoff
>> ___
>> Rivendell-dev mailing list
>> Rivendell-dev@lists.rivendellaudio.org
>> http://lists.rivendellaudio.org/mailman/listinfo/rivendell-dev
___
Rivendell-dev mailing list
Rivendell-dev@lists.rivendellaudio.org
http://lists.rivendellaudio.org/mailman/listinfo/rivendell-dev


Re: [RDD] Help with streaming

2012-08-30 Thread drew Roberts
On Thursday 30 August 2012 14:23:37 Jason Davenport wrote:
> Hello,
>
> i have been pulling my hair out for months trying tof igure this out, i
> finally got darkice and darksnow up and running but when i configure
> everything and hit start streaming, darksnow shuts down
>
> i can't seem to get this working...

Is there an actual reason you need darksnowand can't just run darkice alone? 
If you don't actually need darksnow, perhaps I can give some assistance with 
getting darkice running for you.

all the best,

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


Re: [RDD] Help with streaming

2012-08-30 Thread James Harrison
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Darksnow's pretty clunky and darkice has been known to crash quite a
bit.

Most days people seem to be leaning towards liquidsoap which is at the
least more stable (though the JACK module leaves a lot to be desired).

http://savonet.sourceforge.net/

Scripted configuration and setup, plenty of examples etc on the site.
Has the huge advantage that you can do things like "If there's silence,
play music and jingles from here, 1 jingle for each 3 tracks" and so
on. You can do audio processing in there, too - loudness normalization,
etc.

Cheers,
James Harrison

On 30 August 2012 19:23:37, Jason Davenport wrote:
> Hello,
>
> i have been pulling my hair out for months trying tof igure this out,
> i finally got darkice and darksnow up and running but when i configure
> everything and hit start streaming, darksnow shuts down
>
> i can't seem to get this working...
>
> --
> Jason Davenport
> Riverregionmedia.com
>
>
>
> 
>
>
> ___
> Rivendell-dev mailing list
> Rivendell-dev@lists.rivendellaudio.org
> http://lists.rivendellaudio.org/mailman/listinfo/rivendell-dev
-BEGIN PGP SIGNATURE-
Version: GnuPG v2.0.17 (MingW32)
Comment: Using GnuPG with Mozilla - http://www.enigmail.net/

iEYEARECAAYFAlA/x+wACgkQ22kkGnnJQAxneQCePPTkqyMnONnM9NuMc8JcCmkt
N20AoJOLVXqzpw/cGTn48INPgedecCzd
=rVWu
-END PGP SIGNATURE-

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


Re: [RDD] Help needed setting up Rivendell (Wayne Merricks)

2012-07-09 Thread Elijah Radio

Wayne,Thanks for your reply below. That worked.LukeFinally "No Audio Configuration Data. Channel assignments will not be available for this host as audio resource data has not yet been generated.  Please start the Rivendell daemons on the host configured to run the CAE service in order to populate the audio resources database" When you fudge around with Riv settings, the rivendell services are generally already started.  This means that once you add the host the audio info that was set on startup hasn't been added to the database yet. Quickest way to fix this, restart the Rivendell services: "sudo service rivendell restart" Or if you're really lazy, reboot the computer.___
Rivendell-dev mailing list
Rivendell-dev@lists.rivendellaudio.org
http://lists.rivendellaudio.org/mailman/listinfo/rivendell-dev


Re: [RDD] Help needed setting up Rivendell (Robert Jeffares)

2012-07-06 Thread Wayne Merricks
Try this:

sudo chown `whoami`:users /var/snd

Then you need to open rdadmin and go to edit hosts.  As you've imported the DB 
you've probably got your friends machine name in there (and nothing else).

So create a new host based on the one thats there (so you'll at least be part 
of the way to working).

Call it your computers host name.

Easiest way to find this is to open a terminal.  At the prompt it will say 
@$  (in my case thats wayne@ubu1204 so 
ubu1204 is the host name).  You can also confirm this by typing hostname and 
hitting enter and it will echo the host name to you.

Then make sure the host ip address is 127.0.0.1 (I forget whether this needs to 
be 127.0.1.1 or not, there was a reason behind 1.1 but I can't remember what it 
is).

There is an MPEG2 setting in two places, one is library the other might be 
catch I can't remember which sadly, have a poke around and change any pcm wav 
to mpeg2.  

Finally "No Audio Configuration Data. Channel assignments will not be available 
for this host as audio resource data has not yet been generated.  Please start 
the Rivendell daemons on the host configured to run the CAE service in order to 
populate the audio resources database"

When you fudge around with Riv settings, the rivendell services are generally 
already started.  This means that once you add the host the audio info that was 
set on startup hasn't been added to the database yet.

Quickest way to fix this, restart the Rivendell services: "sudo service 
rivendell restart"

Or if you're really lazy, reboot the computer.


-Original Message-
From: rivendell-dev-boun...@lists.rivendellaudio.org on behalf of Elijah Radio
Sent: Fri 06/07/2012 18:42
To: rivendell-dev@lists.rivendellaudio.org
Subject: Re: [RDD] Help needed setting up Rivendell (Robert Jeffares)
 
Robert,

Thanks very much for your reply!

> you need to set /var/snd so that whoever you are logged in as can write
> to the directory.
> in terminal as su may need to be sudo
>
> chown -R [yourlogin]:users /var/snd [enter]
>
> chmod -R 777 /var/snd [enter]

I entered "sudo su" in the Terminal and then entered my password. When I  
login to RDAdmin my user name is "admin", so I next entered "chown -R  
admin:users /var/snd", but it replied "chown: invalid user:  
`admin:users'". What should I use instead of "admin" for [yourlogin]?

>> (Problem 2) Now I want to check that the programs are all there and
>> working. When I open RDLibrary in my RRAbuntu installation I see lots
>> of carts and files from the operating station, but when I open a cart,
>> open a file, and click on the play button nothing happens. So I don?t
>> know if the file in the var/snd folder is properly associated with the
>> label in the cart.

> You dont have permissions set so the above should fix it plus you need
> to set up the playout machine as a host RD recognises.

I guess I'll get back to this after resolving the question above. I don't  
know how to "set up the playout machine as a host RD recognises".

> (Problem 3) I thought I?d go ahead and re-import my programs while I
> figure out the above. I wanted to import my wav and mp3 files as
> mp2?s, so I checked the RDLibrary setting under Hosts in RDAdmin. I
> found two hosts there, both names associated with the station of the
> cloned drive. Do I need both of those? Can I delete one?

> When you imported the database you imported the hosts from the clone.
> I would create a host name based on the top one and delete both them

Okay, I created a new host based on the top one of the two from the cloned  
drive. Then I edited the host info (such as IP Address and Use Realtime  
Filtering) based on how my RRAbuntu installation had been set up before I  
imported the database from the cloned drive. (I had backed up my database  
and taken screen shots of all the Host configuration screens.)
However, when I clicked on RDLibrary in the new host to configure it I got
"No Audio Configuration Data. Channel assignments will not be available  
for this host as audio resource data has not yet been generated. Please  
start the Rivendell daemons on the host configured to run the CAE service  
in order to populate the audio resources database."
What does that mean and what should I do about it?
After clicking OK on that message, I do get the RDLibrary config screen.

>> (Problem 4) Both of those hosts have Format=MPEG Layer 2 selected in
>> RDLibrary config, but when I imported a wav file with rdimport via the
>> Terminal, the resulting file was the same size as the original. That
>> makes me think that it didn?t convert the wav to mp2.

> you are neither of these hosts. I suspect your machine is defaulting to
> wav

After setting up the new host as above and c

Re: [RDD] Help needed setting up Rivendell (Robert Jeffares)

2012-07-06 Thread Elijah Radio

Robert,Thanks very much for your reply!> you need to set /var/snd so that whoever you are logged in as can write> to the directory. > in terminal as su may need to be sudo >> chown -R [yourlogin]:users /var/snd [enter] >> chmod -R 777 /var/snd [enter]  I entered "sudo su" in the Terminal and then entered my password. When I login to RDAdmin my user name is "admin", so I next entered "chown -R admin:users /var/snd", but it replied "chown: invalid user: `admin:users'". What should I use instead of "admin" for [yourlogin]?>> (Problem 2) Now I want to check that the programs are all there and>> working. When I open RDLibrary in my RRAbuntu installation I see lots>> of carts and files from the operating station, but when I open a cart,>> open a file, and click on the play button nothing happens. So I don?t>> know if the file in the var/snd folder is properly associated with the>> label in the cart. > You dont have permissions set so the above should fix it plus you need> to set up the playout machine as a host RD recognises. I guess I'll get back to this after resolving the question above. I don't know how to "set up the playout machine as a host RD recognises".> (Problem 3) I thought I?d go ahead and re-import my programs while I> figure out the above. I wanted to import my wav and mp3 files as> mp2?s, so I checked the RDLibrary setting under Hosts in RDAdmin. I> found two hosts there, both names associated with the station of the> cloned drive. Do I need both of those? Can I delete one? > When you imported the database you imported the hosts from the clone. > I would create a host name based on the top one and delete both them Okay, I created a new host based on the top one of the two from the cloned drive. Then I edited the host info (such as IP Address and Use Realtime Filtering) based on how my RRAbuntu installation had been set up before I imported the database from the cloned drive. (I had backed up my database and taken screen shots of all the Host configuration screens.) However, when I clicked on RDLibrary in the new host to configure it I got "No Audio Configuration Data. Channel assignments will not be available for this host as audio resource data has not yet been generated. Please start the Rivendell daemons on the host configured to run the CAE service in order to populate the audio resources database."What does that mean and what should I do about it?After clicking OK on that message, I do get the RDLibrary config screen.>> (Problem 4) Both of those hosts have Format=MPEG Layer 2 selected in>> RDLibrary config, but when I imported a wav file with rdimport via the>> Terminal, the resulting file was the same size as the original. That>> makes me think that it didn?t convert the wav to mp2. > you are neither of these hosts. I suspect your machine is defaulting to> wav After setting up the new host as above and checking the RDLibrary setting, I tried rdimport again and it appears to now be converting my wav files to mp2. So I will go ahead and start re-importing my 7,000 programs. This is progress!Thanks again,Luke___
Rivendell-dev mailing list
Rivendell-dev@lists.rivendellaudio.org
http://lists.rivendellaudio.org/mailman/listinfo/rivendell-dev


Re: [RDD] Help needed setting up Rivendell (Geoff Barkman)

2012-07-06 Thread Elijah Radio

Geoff,Thanks for your reply. I can't see how to properly reply to your e-mail since I get the Rivendell list in Digest form, so I've copied and pasted your e-mail below.I had previously imported about 7,000 files in RRAbuntu, but I believe those are deleted now, so I'll have to reimport them. I think that I over-wrote them when I copied the snd files over from the cloned drive. I browsed through my var/snd folder in RRAbuntu and all the files seem to be from the cloned drive. It's hard to be sure, though, there are about 37,000 files. (Btw, they're not copyrighted.)It appears that they didn't all copy over because on the cloned drive the snd folder has 42,000 items. Should I just delete my var/snd folder and copy them over again using a Terminal command rather than the GUI file browser? If so, I need a little help figuring out how to type the paths for the two hard drives.I didn't follow your suggestion below about creating a songlist text file because the quantities are so large, but I'd be glad to try it and do a Compare Documents in Word if you think that will help.Thanks,Luke> How big is your library? 1000 1 songs?> First thing I would do on your new machine. Open a terminal and type> ls /var/snd > ~/songlist.txt> This will list everything in your /var/snd directory and send it to a > txt file in your rrabuntu home directory.> If your old rrabuntu machine is still operational you could make a> similar list on that machine and compare the 2 lists to see if any> songs are missing.> Let us know how you go.> Many thanks> Geoff Barkman___
Rivendell-dev mailing list
Rivendell-dev@lists.rivendellaudio.org
http://lists.rivendellaudio.org/mailman/listinfo/rivendell-dev


Re: [RDD] Help needed setting up Rivendell

2012-07-05 Thread Robert Jeffares
On Thu, 2012-07-05 at 22:00 -0500, Luke Rogers wrote:
> 
> Hi,
> My wife and I are working on starting a radio station on the Internet.
> Neither of us has any significant background in radio. Last year a
> friend helped me install RRAbuntu, and I’ve screened a lot of programs
> and imported a lot into RDLibrary.
Ch 1
at this point you have used a number of cart numbers for music cuts or
programmes or whatever
> Recently another friend sent a clone of the hard disk of a working
> station running Rivendell so that I could get all their programs. I
> opened RDAdmin on the cloned drive and exported the database, then
> opened RDAdmin in RRAbuntu and imported the backup. 

This then set the database to be the same as the station you got the
clone from, but the tracks in /var/snd/ are the ones you put in there in
Ch 1


> (Problem 1) I also tried to copy all the files in the snd directory to
> var/snd, but for some reason the number of files don’t match up. I
> selected “copy all” in the file browser but it’s as if it didn’t
> select all of the files. This probably should have been done through
> the therminal, but I couldn’t figure out quite what to type. (I’m a
> Linux newbie.)

you need to set /var/snd so that whoever you are logged in as can write
to the directory.

in terminal as su may need to be sudo

chown -R [yourlogin]:users /var/snd [enter]

chmod -R 777 /var/snd [enter]


> (Problem 2) Now I want to check that the programs are all there and
> working. When I open RDLibrary in my RRAbuntu installation I see lots
> of carts and files from the operating station, but when I open a cart,
> open a file, and click on the play button nothing happens. So I don’t
> know if the file in the var/snd folder is properly associated with the
> label in the cart.

You dont have permissions set so the above should fix it plus you need
to set up the playout machine as a host RD recognises.

> (Problem 3) I thought I’d go ahead and re-import my programs while I
> figure out the above. I wanted to import my wav and mp3 files as
> mp2’s, so I checked the RDLibrary setting under Hosts in RDAdmin. I
> found two hosts there, both names associated with the station of the
> cloned drive. Do I need both of those? Can I delete one?

When you imported the database you imported the hosts from the clone

I would create a host name based on the top one and delete both them

> (Problem 4) Both of those hosts have Format=MPEG Layer 2 selected in
> RDLibrary config, but when I imported a wav file with rdimport via the
> Terminal, the resulting file was the same size as the original. That
> makes me think that it didn’t convert the wav to mp2.

you are neither of these hosts. I suspect your machine is defaulting to
wav 

> I’ve looked through the Rivendell Operations Guide and can’t find
> anything related to these issues. I would be very glad if anyone can
> point me to a resource that will allow me to figure these out by
> myself, because I don’t want to impose too much on the helpful people
> here. But until then... 
> 
> Thanks,
> 
> Luke
> 
> 
> ___
> Rivendell-dev mailing list
> Rivendell-dev@lists.rivendellaudio.org
> http://lists.rivendellaudio.org/mailman/listinfo/rivendell-dev


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


Re: [RDD] Help needed setting up Rivendell

2012-07-05 Thread Geoff Barkman
Hi Luke
How big is your library? 1000 1 songs?

First thing I would do on your new machine. Open a terminal and type
ls /var/snd > ~/songlist.txt

This will list everything in your /var/snd directory and send it to a
txt file in your rrabuntu home directory.

If your old rrabuntu machine is still operational you could make a
similar list on that machine and compare the 2 lists to see if any
songs are missing.
Let us know how you go.
Many thanks
Geoff Barkman

On Fri, Jul 6, 2012 at 3:00 PM, Luke Rogers  wrote:
>
> Hi,
> My wife and I are working on starting a radio station on the Internet.
> Neither of us has any significant background in radio. Last year a friend
> helped me install RRAbuntu, and I’ve screened a lot of programs and imported
> a lot into RDLibrary.
> Recently another friend sent a clone of the hard disk of a working station
> running Rivendell so that I could get all their programs. I opened RDAdmin
> on the cloned drive and exported the database, then opened RDAdmin in
> RRAbuntu and imported the backup.
> (Problem 1) I also tried to copy all the files in the snd directory to
> var/snd, but for some reason the number of files don’t match up. I selected
> “copy all” in the file browser but it’s as if it didn’t select all of the
> files. This probably should have been done through the therminal, but I
> couldn’t figure out quite what to type. (I’m a Linux newbie.)
> (Problem 2) Now I want to check that the programs are all there and working.
> When I open RDLibrary in my RRAbuntu installation I see lots of carts and
> files from the operating station, but when I open a cart, open a file, and
> click on the play button nothing happens. So I don’t know if the file in the
> var/snd folder is properly associated with the label in the cart.
> (Problem 3) I thought I’d go ahead and re-import my programs while I figure
> out the above. I wanted to import my wav and mp3 files as mp2’s, so I
> checked the RDLibrary setting under Hosts in RDAdmin. I found two hosts
> there, both names associated with the station of the cloned drive. Do I need
> both of those? Can I delete one?
> (Problem 4) Both of those hosts have Format=MPEG Layer 2 selected in
> RDLibrary config, but when I imported a wav file with rdimport via the
> Terminal, the resulting file was the same size as the original. That makes
> me think that it didn’t convert the wav to mp2.
> I’ve looked through the Rivendell Operations Guide and can’t find anything
> related to these issues. I would be very glad if anyone can point me to a
> resource that will allow me to figure these out by myself, because I don’t
> want to impose too much on the helpful people here. But until then...
> 
>
> Thanks,
>
> Luke
>
>
> ___
> Rivendell-dev mailing list
> Rivendell-dev@lists.rivendellaudio.org
> http://lists.rivendellaudio.org/mailman/listinfo/rivendell-dev
>
___
Rivendell-dev mailing list
Rivendell-dev@lists.rivendellaudio.org
http://lists.rivendellaudio.org/mailman/listinfo/rivendell-dev


Re: [RDD] Help - Auxilio - Aider: how to mount a 2nd drive in Centos5

2012-07-03 Thread John Stanley
On Tue, 2012-07-03 at 09:07 -0400, ICR Programs wrote:

> 
> My main problem is that no matter what I've tried, I can't seem to be
> able to mount any drive in Centos so that I can see it in the GUI,
> however USB drives do mount automagically. So, as a work around, I can
> copy all of our RDlibrary sound files from our production machine over
> to a USB drive which is formatted FAT32, then mount this USB drive on
> the new CentOS machine, and copy over the RDLibrary files to the new
> CentOS computer's /var/snd directory.  But this will be slow.

For a GUI type app install the EPEL Yum Repository. The 'yum install
gparted' from the command line. Gparted will give you a GUI app to make
partitions etc.  

You want EPEL 5: http://fedoraproject.org/wiki/EPEL

Manually find the drive:

Need to be root: assuming no sudo setup in `vi /etc/sudoers`.
$ su -
list the drives: man fdisk for making partitions by hand...
# fdisk -l
/dev/sdb1   1972978148161   83  Linux

Mount the drive: 'man mount'
# mount /dev/sdb1 /mnt/mydir

check the mounted directory:
# mount
/dev/sdb1 on /var/snd type ext3 (rw)

cp -a -v /mnt/mydir/* /var/snd/

To make it permanent:
Add it in /etc/fstab like mention in another thread. then `mount -a`.  

You can also make a sym link to the directory that you want from the
Desktop. (man ln).

Correct permissions for the folder see, 'man chown' and 'man chmod'.

> I am not scared of the command line, but wonder if there is a GUI
> application like Disk Utility in Ubuntu that will help us do the
> following.  However, if there isn't a GUI, any guidance would be
> greatly appreciated.  I do see that there is a Disk Utility available
> for Centos 6, what do Centos 5 users use?

Side issues:
Providing you have the correct software installed (no idea what comes
with the appliance) 'Nautilus' will automount the USB Drive.  There are
'key services' that are needed for this to happen.  If the appliance
does not have those pieces then it will not happen (your case?).

If the appliance has Nautilus (disk browser) (or the KDE counter part)
then you can still make a 'Short Cut' to the mounted folder via the
Nautilus Menu even if it does not auto mount (same applies to a SATA
disk (as in short cut after the folder location is determined).  You
should also be able to just browse to the mounted drives folder also
from the the Nautilus disk browser.

There are cases where RHEL 5 and Centos 5 will not Automount some USB
drives even if the right software is installed on the appliance.



signature.asc
Description: This is a digitally signed message part
___
Rivendell-dev mailing list
Rivendell-dev@lists.rivendellaudio.org
http://lists.rivendellaudio.org/mailman/listinfo/rivendell-dev


Re: [RDD] Help - Auxilio - Aider: how to mount a 2nd drive in Centos5

2012-07-03 Thread Wayne Merricks
There are a million ways to skin a cat with linux which is great and 
confusing when you're getting started.


You can shove the drive into the machine and use it as /var/snd if you 
want.


If all you want to do is copy /var/snd to the CentOS /var/snd, its even 
easier than you think if you have a network set up.


On RRABuntu make sure you have SSH Server installed (sudo apt-get 
install openssh-server).


Create /var/snd on the CentOS machine as normal and then use your 
network to copy the stuff:


scp is your friend here, it uses SSH to copy things from a remote 
computer to your local machine (or vice versa, or even one remote pc to 
another remote pc).


Basic syntax for you is:

scp sourceuser@sourceip:path_to_files local_directory

So we could do:

scp rivendell@rrabuntu_computer:/var/snd/*.wav /var/snd

It will ask you for the users password and away it goes.

As for CentOS I only have a CentOS 6.2 virtual machine with gnome 
installed (hopefully 5.5 and kde will be similar).  All I do on this is 
plug the drive in and then it shows up in Computer under gnome.


Assuming its not that easy you need to do a bit of investigating.

Normally linux shows disks inside /dev/

SATA/SCSI disks show up as /dev/sda /dev/sdb /dev/sdc etc etc

Then you'll also have things like /dev/sda1 /dev/sda2 which are 
partitions 1 and 2 on the sda disk.


Older drives are hda I think.

If the drive was sdb and you wanted sdb1 to quickly mount the drive you 
can then do:


sudo mkdir /media/tempdrive
sudo mount -t ext4 /dev/sdb1 /media/tempdrive

Then you can copy paste from there to /var/snd

Or you could mount it under /var/snd to start with.  This is only 
temporary though and will clear on a reboot.  To make it permanent 
you're back to /etc/fstab.


In fstab add the line:

/dev/sdb1   /var/sndext4 defaults,errors=remount-ro 
0   1


Then reboot to make sure things are what you expect (I think you can do 
sudo mount -a instead of rebooting but you'll have to unmount the test 
you did first with sudo umount /media/tempdrive).


Wayne Merricks
The Voice Asia

On 03/07/12 14:31, ICR Programs wrote:

Hello and thanks Wayne!

I hadn't thought of keeping the RRAbuntu machine in operation as a 
server. I had simply wanted to take the 2nd drive in that RRAbuntu 
machine that has all our sound files on it, and is currently mapped to 
/var/snd in that machine and put it into the new CentOS/Rivendell 
machine.


If I am understanding things, we'd do that via fstab, but first I must 
get CentOS to see this 2nd drive when it's installed in the computer.


When I installed hwbrowser I can see a 2nd drive in the CentOS / 
Rivendell computer, but I can't seem to figure out how to mount it so 
that the GUI or OS sees it. That's why I was wondering about Disk Utility.


So, if all I wanted to do was to mount this 2nd drive into the CentOS 
machine, and either map it to /var/snd or simply copy the RDLibrary 
files over to the 1st drive (the one with the OS which does have 
enough room on it, it's 1TB), what would you recommend?


and, a MILLION thanks for your help, kind sir!

Rene



On Tue, Jul 3, 2012 at 9:23 AM, Wayne Merricks 
> wrote:


It depends what you're trying to do, if you are keeping your RRABuntu
computer as some sort of server for the /var/snd you can mount it
via NFS.

On RRABuntu:

sudo apt-get install nfs-kernel-server

sudo nano /etc/exports

In here add the line:

/var/snd 10.44.0.0/255.255.0.0(rw,sync,all_squash,subtree_check)


This requires some explanation

/var/snd : the directory to share via NFS
10.44.0.0/255.255.0.0  : This is my
network subnet that this will be
shared with (this way you can be slightly more secure by
restricting it
to certain subnets).

So if you had a 192.168.1.x network you could change this to
192.168.1.0/255.255.255.0 

The stuff in the brackets are then the sharing options:

rw = share with read and write permissions
sync = wait for data to be received/written before declaring it
good and
moving on.  This has the benefit of guaranteeing data delivery however
because it has to wait for mechanical drives can be slower than async.
Async will just write data to the buffers and move on however you
never
know if this buffer is ever read/written so there is potential for
data
loss.

all_squash : ignores whatever linux user is in use at the remote
end and
squashes it down to fit the permissions on the share. This lets you do
things like chmod/chown without having to have users with the same UID
(I might have remembered this wrongly but its something random
like that
and allowing root permissions)

subtree_check : something to do with parsing sub directories and

Re: [RDD] Help - Auxilio - Aider: how to mount a 2nd drive in Centos5

2012-07-03 Thread ICR Programs
Hello and thanks Wayne!

I hadn't thought of keeping the RRAbuntu machine in operation as a server.
I had simply wanted to take the 2nd drive in that RRAbuntu machine that has
all our sound files on it, and is currently mapped to /var/snd in that
machine and put it into the new CentOS/Rivendell machine.

If I am understanding things, we'd do that via fstab, but first I must get
CentOS to see this 2nd drive when it's installed in the computer.

When I installed hwbrowser I can see a 2nd drive in the CentOS / Rivendell
computer, but I can't seem to figure out how to mount it so that the GUI or
OS sees it. That's why I was wondering about Disk Utility.

So, if all I wanted to do was to mount this 2nd drive into the CentOS
machine, and either map it to /var/snd or simply copy the RDLibrary files
over to the 1st drive (the one with the OS which does have enough room on
it, it's 1TB), what would you recommend?

and, a MILLION thanks for your help, kind sir!

Rene



On Tue, Jul 3, 2012 at 9:23 AM, Wayne Merricks <
waynemerri...@thevoiceasia.com> wrote:

> It depends what you're trying to do, if you are keeping your RRABuntu
> computer as some sort of server for the /var/snd you can mount it via NFS.
>
> On RRABuntu:
>
> sudo apt-get install nfs-kernel-server
>
> sudo nano /etc/exports
>
> In here add the line:
>
> /var/snd 10.44.0.0/255.255.0.0(rw,sync,all_squash,subtree_check)
>
> This requires some explanation
>
> /var/snd : the directory to share via NFS
> 10.44.0.0/255.255.0.0 : This is my network subnet that this will be
> shared with (this way you can be slightly more secure by restricting it
> to certain subnets).
>
> So if you had a 192.168.1.x network you could change this to
> 192.168.1.0/255.255.255.0
>
> The stuff in the brackets are then the sharing options:
>
> rw = share with read and write permissions
> sync = wait for data to be received/written before declaring it good and
> moving on.  This has the benefit of guaranteeing data delivery however
> because it has to wait for mechanical drives can be slower than async.
> Async will just write data to the buffers and move on however you never
> know if this buffer is ever read/written so there is potential for data
> loss.
>
> all_squash : ignores whatever linux user is in use at the remote end and
> squashes it down to fit the permissions on the share. This lets you do
> things like chmod/chown without having to have users with the same UID
> (I might have remembered this wrongly but its something random like that
> and allowing root permissions)
>
> subtree_check : something to do with parsing sub directories and
> applying permissions there too.
>
> Anyway once thats in the file and saved you can make the shares live by
> going:
>
> sudo exportfs -r -v
>
> Now on your CentOS client I think its the following packages that you
> need (courtesy of Google):
>
> yum install nfs-utils nfs-utils-lib
>
> Once thats in place test the share by the following:
>
> sudo mount -t nfs rrabuntu_host_name_or_ip:/var/snd /var/snd
>
> So for me this was sudo mount -t nfs ukaud001:/var/snd /var/snd if you
> don't have any DNS records just use the IP address instead.
>
> If that works for you, you can permanently mount it by adding the
> following to /etc/fstab:
>
> rrabuntu_host_name_or_ip:/var/snd /var/snd nfs
> rsize=8192,wsize=8192,timeo=14,intr
>
> The rsize and wsize is the size of the read and write buffers.  I think
> thats 8192KB.  The max is 32768.  I've found that I sometimes get drop
> outs with smaller buffer sizes.  I think I set mine as max, the server
> and clients will auto negotiate to the highest compatible buffer size
> anyway so its no big deal to go big.
>
> At this point you can reboot and see how you go.
>
> If you're adding a second drive, fstab is also the way to go and is
> quite simple.  This page has the info so no point retyping here:
>
> http://linux.justinhartman.com/Installing_a_second_hard_drive
>
> Obviously don't fdisk and format if partitions are already in place
>
> Wayne Merricks
> The Voice Asia
>
> On 03/07/12 14:07, ICR Programs wrote:
> > drive to /var/snd
>
>
>
> ###
> Scanned by MailMarshal
> ###
>
> 
>
> Attention:
>
> The information contained in this message is confidential and intended
> for the addressee(s) only. If you have received this message in error
> or there are any problems, please notify the originator immediately.
> The unauthorised use, disclosure, copying or alteration of this message
> is strictly forbidden. Christian Vision or any of its subsidiaries will
> not be liable for direct, special, indirect or consequential damages
> arising from alteration of the contents of this message by a third party
> or as a result of any virus being passed on. Please note that we reserve
> the right to monitor and read any e-mails sent or received by the
> company under the Telecommunications (Lawful Business Practice)
> (Interception of Communications) Regulation 20

Re: [RDD] Help - Auxilio - Aider: how to mount a 2nd drive in Centos5

2012-07-03 Thread Wayne Merricks
It depends what you're trying to do, if you are keeping your RRABuntu 
computer as some sort of server for the /var/snd you can mount it via NFS.

On RRABuntu:

sudo apt-get install nfs-kernel-server

sudo nano /etc/exports

In here add the line:

/var/snd 10.44.0.0/255.255.0.0(rw,sync,all_squash,subtree_check)

This requires some explanation

/var/snd : the directory to share via NFS
10.44.0.0/255.255.0.0 : This is my network subnet that this will be 
shared with (this way you can be slightly more secure by restricting it 
to certain subnets).

So if you had a 192.168.1.x network you could change this to 
192.168.1.0/255.255.255.0

The stuff in the brackets are then the sharing options:

rw = share with read and write permissions
sync = wait for data to be received/written before declaring it good and 
moving on.  This has the benefit of guaranteeing data delivery however 
because it has to wait for mechanical drives can be slower than async.  
Async will just write data to the buffers and move on however you never 
know if this buffer is ever read/written so there is potential for data 
loss.

all_squash : ignores whatever linux user is in use at the remote end and 
squashes it down to fit the permissions on the share. This lets you do 
things like chmod/chown without having to have users with the same UID 
(I might have remembered this wrongly but its something random like that 
and allowing root permissions)

subtree_check : something to do with parsing sub directories and 
applying permissions there too.

Anyway once thats in the file and saved you can make the shares live by 
going:

sudo exportfs -r -v

Now on your CentOS client I think its the following packages that you 
need (courtesy of Google):

yum install nfs-utils nfs-utils-lib

Once thats in place test the share by the following:

sudo mount -t nfs rrabuntu_host_name_or_ip:/var/snd /var/snd

So for me this was sudo mount -t nfs ukaud001:/var/snd /var/snd if you 
don't have any DNS records just use the IP address instead.

If that works for you, you can permanently mount it by adding the 
following to /etc/fstab:

rrabuntu_host_name_or_ip:/var/snd /var/snd nfs 
rsize=8192,wsize=8192,timeo=14,intr

The rsize and wsize is the size of the read and write buffers.  I think 
thats 8192KB.  The max is 32768.  I've found that I sometimes get drop 
outs with smaller buffer sizes.  I think I set mine as max, the server 
and clients will auto negotiate to the highest compatible buffer size 
anyway so its no big deal to go big.

At this point you can reboot and see how you go.

If you're adding a second drive, fstab is also the way to go and is 
quite simple.  This page has the info so no point retyping here:

http://linux.justinhartman.com/Installing_a_second_hard_drive

Obviously don't fdisk and format if partitions are already in place

Wayne Merricks
The Voice Asia

On 03/07/12 14:07, ICR Programs wrote:
> drive to /var/snd



###
Scanned by MailMarshal
###



Attention: 

The information contained in this message is confidential and intended 
for the addressee(s) only. If you have received this message in error 
or there are any problems, please notify the originator immediately.
The unauthorised use, disclosure, copying or alteration of this message
is strictly forbidden. Christian Vision or any of its subsidiaries will
not be liable for direct, special, indirect or consequential damages 
arising from alteration of the contents of this message by a third party
or as a result of any virus being passed on. Please note that we reserve
the right to monitor and read any e-mails sent or received by the 
company under the Telecommunications (Lawful Business Practice) 
(Interception of Communications) Regulation 2000. Christian Vision is 
registered in England as a limited company 2842414 and as a charity 
1031031  


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


Re: [RDD] Help with Broadcast tools SS 8.2 switcher

2012-06-13 Thread Frederick Henderson
Hi Geoff!

See the Serial Port Troubleshooting on the Wiki for some tips.

http://rivendell.tryphon.org/wiki/Serial_port_Troubleshooting

interceptty proved very valuable to me when I was having problems setting  
up a Unity 4000 satellite receiver on the serial port. It lets you see  
what is actually being sent or if anything is being sent to a serial port.

Also, another tip Rivendell need the full path to the port in the  
settings  like so:

/dev/ttyS0

Not just ttyS0

I just took anther look at the wiki article you refered to. I see that the  
serial ports in the linux they were using named them serial0, serial1,  
etc. Each distro seems to have its own naming convention for serial ports.  
Open a terminal and do:

ls /dev/*

Then see if you can find the serial ports listed there.  If not save a  
copy of the listing remove the card. Do the command again with the card  
out and compare the two screenshots.

You will also what to check the BIOS and see if the Serial ports are  
getting an interupt as well.

Greetings,

Frederick



On Tue, 12 Jun 2012 23:27:56 +0200, Geoff Barkman   
wrote:

> Hi there
> We have recently added a Broadcast tools switcher to our system.
> I'm trying to control it via a serial lead from Rivendell.
> I've followed instructions on the wiki.
> http://rivendell.tryphon.org/wiki/Network_Switcher_setup_-_Broadcast_Tools_SS_8.2
>
> But for some reason the pip light is not working and it isn't switching.
> It is a brand new machine that is trying to control it, which doesn't
> have a serial port installed so we added a 2 port serial PCI Adapter.
> I'm trying work out what the com ports are on it Com 1 Com2 etc.
> Is there an easy way to work it out?
> I had thought of controlling the card via an older second computer on
> our rack, but it would be nice to control it from the one computer so
> we don't have issues with time synchronization etc.
>
> Many thanks
> Geoff
> ___
> Rivendell-dev mailing list
> Rivendell-dev@lists.rivendellaudio.org
> http://lists.rivendellaudio.org/mailman/listinfo/rivendell-dev


-- 
Frederick Henderson
Wetzikerstrasse 25
CH-8344 Bäretswil
Switzerland
+41 32 510 11 63
+41 76 295 26 67 Cell
+1 (724) 726-1460
Take the pledge!
http://www.emailetiquettepledge.com/take-the-pledge

This email sent from Opera's revolutionary e-mail client,  
http://www.opera.com/mail/
and typed on the Dvorak keyboard. http://dvzine.org

Want to learn a new language the way you learned your first?
Try LingQ for free!   ==>   http://www.lingq.com/?referral=frederickjh
___
Rivendell-dev mailing list
Rivendell-dev@lists.rivendellaudio.org
http://lists.rivendellaudio.org/mailman/listinfo/rivendell-dev


Re: [RDD] Help with Broadcast tools SS 8.2 switcher

2012-06-13 Thread Geoff Barkman
Yep its listed in there. I was just trying to which com port it is hanging
off. Because its hanging off an extra pci serial card.
Cheers
Geoff
 On Jun 14, 2012 2:25 AM, "Rob Landry" <41001...@interpring.com> wrote:

>
> I have one of those running at one of my clients' stations.
>
> Run rdadmin; select manage Hosts; choose the host in question; click on
> Switchers GPIO. You should see "Broadcast Tools ACS 8.2" listed. Do you?
>
>
> Rob
>
> On Wed, 13 Jun 2012, Geoff Barkman wrote:
>
> > Hi there
> > We have recently added a Broadcast tools switcher to our system.
> > I'm trying to control it via a serial lead from Rivendell.
> > I've followed instructions on the wiki.
> >
> http://rivendell.tryphon.org/wiki/Network_Switcher_setup_-_Broadcast_Tools_SS_8.2
> >
> > But for some reason the pip light is not working and it isn't switching.
> > It is a brand new machine that is trying to control it, which doesn't
> > have a serial port installed so we added a 2 port serial PCI Adapter.
> > I'm trying work out what the com ports are on it Com 1 Com2 etc.
> > Is there an easy way to work it out?
> > I had thought of controlling the card via an older second computer on
> > our rack, but it would be nice to control it from the one computer so
> > we don't have issues with time synchronization etc.
> >
> > Many thanks
> > Geoff
> > ___
> > Rivendell-dev mailing list
> > Rivendell-dev@lists.rivendellaudio.org
> > http://lists.rivendellaudio.org/mailman/listinfo/rivendell-dev
> >
> ___
> Rivendell-dev mailing list
> Rivendell-dev@lists.rivendellaudio.org
> http://lists.rivendellaudio.org/mailman/listinfo/rivendell-dev
>
___
Rivendell-dev mailing list
Rivendell-dev@lists.rivendellaudio.org
http://lists.rivendellaudio.org/mailman/listinfo/rivendell-dev


Re: [RDD] Help with Broadcast tools SS 8.2 switcher

2012-06-13 Thread Rob Landry

I have one of those running at one of my clients' stations.

Run rdadmin; select manage Hosts; choose the host in question; click on 
Switchers GPIO. You should see "Broadcast Tools ACS 8.2" listed. Do you?


Rob

On Wed, 13 Jun 2012, Geoff Barkman wrote:

> Hi there
> We have recently added a Broadcast tools switcher to our system.
> I'm trying to control it via a serial lead from Rivendell.
> I've followed instructions on the wiki.
> http://rivendell.tryphon.org/wiki/Network_Switcher_setup_-_Broadcast_Tools_SS_8.2
>
> But for some reason the pip light is not working and it isn't switching.
> It is a brand new machine that is trying to control it, which doesn't
> have a serial port installed so we added a 2 port serial PCI Adapter.
> I'm trying work out what the com ports are on it Com 1 Com2 etc.
> Is there an easy way to work it out?
> I had thought of controlling the card via an older second computer on
> our rack, but it would be nice to control it from the one computer so
> we don't have issues with time synchronization etc.
>
> Many thanks
> Geoff
> ___
> Rivendell-dev mailing list
> Rivendell-dev@lists.rivendellaudio.org
> http://lists.rivendellaudio.org/mailman/listinfo/rivendell-dev
>
___
Rivendell-dev mailing list
Rivendell-dev@lists.rivendellaudio.org
http://lists.rivendellaudio.org/mailman/listinfo/rivendell-dev


Re: [RDD] Help with REPORTS needed BMI logging this week.

2012-04-17 Thread Robert Orr
I use a mysql command to get my playout logs instead of creating a
report. Maybe something similar to this could help you:


SELECT Production_SRT.EVENT_DATETIME, CART.TITLE, CART.ARTIST,
CART.COMPOSER, Production_SRT.LENGTH, CART.LABEL, CART.ALBUM FROM
`Production_SRT` LEFT JOIN CART ON Production_SRT.CART_NUMBER =
CART.NUMBER WHERE (Production_SRT.EVENT_DATETIME BETWEEN "2012-02-26
00:00:00" AND "2012-03-03 23:59:59") AND (CART.GROUP_NAME <> "TEMP")
AND (CART.GROUP_NAME <> "TEST") AND (CART.GROUP_NAME <> "ads") AND
(Production_SRT.CART_NUMBER <> "26000") AND (CART.GROUP_NAME <> "ID")
AND (Production_SRT.CART_NUMBER <> "4000") into outfile
'/tmp/this3.csv';

Robert

On Tue, Apr 17, 2012 at 12:38 PM, Fawcett, William - fawcetwd
 wrote:
> Perhaps this is simple; I just cannot figure this out.
>
> Station is a non-commercial student station.  Using RDairplay, we sequence 
> carts. Each cart holds 100-150 songs, some hold ID's or liners.
>
> Can I generate a report that shows what cart and WHAT CUTS played 
> chronologically?
>
>
> -Bill Fawcett
> ___
> Rivendell-dev mailing list
> Rivendell-dev@lists.rivendellaudio.org
> http://lists.rivendellaudio.org/mailman/listinfo/rivendell-dev
___
Rivendell-dev mailing list
Rivendell-dev@lists.rivendellaudio.org
http://lists.rivendellaudio.org/mailman/listinfo/rivendell-dev


Re: [RDD] HELP???

2012-02-20 Thread Patrick Schmalstig / WRRJ Radio
Troy I'm now available when you are to continue the installation of
Rivendell on Ubuntu Studio 11.10. Please meet me on the chat
www.wrrj.org to start.

On Mon, Feb 20, 2012 at 7:13 AM, Troy `Welch  wrote:
> Thanks. When I look at the installation guide, I have no clue what most of
> it is talking about.
> Not only am I new to Rivendell but I am also new to Linux. So I am trying to
> learn it all.
> The basics of Linux are easy. It is just learning and understading how to
> install and tweak programs that is hard.
>
> That is why it is much easier for me to just have someone log into the
> system and walk me thru it.
>
> Troy
>
>> To: rivendell-dev@lists.rivendellaudio.org
>> Date: Mon, 20 Feb 2012 12:03:12 +
>> From: waynemerri...@thevoiceasia.com
>> Subject: Re: [RDD] HELP???
>
>>
>> All the deltas I've tried have worked fine in Ubu (and Suse, Debian,
>> CentOS). I've used:
>>
>> Delta 44s, 1010LTs and the full 1010 rack. Installing riv from source is
>> not really complicated unless you want to start doing things with JACK
>> which requires some tweaking. I have an old Ubuntu guide in pdf form that
>> is a mix of instructions and a learning aid
>> http://www.thevoiceasia.com/rivendell/Rivendell_2_on_Ubuntu_1104.pdf
>>
>> Theres also a newer guide on the Wiki which deals with Debian 6 that is
>> more up to date and incorporates the extra stuff I learnt over the past
>> few months. I recommend taking the dependencies for Ubuntu from the PDF
>> but otherwise following the Debian Guide as some parts are much easier
>> than the init script stuff I used to do.
>>
>> http://rivendell.tryphon.org/wiki/Rivendell_on_Debian_6
>>
>> Regards,
>>
>> Wayne
>>
>> On Sun, 19 Feb 2012 23:31:53 -, Troy Welch 
>> wrote:
>>
>> > The sound card is not playing currently. There was a topic I noticed on
>> > the rivendell site that talked about the 1010 audio card.
>> >
>> > Sent from my iPhone
>> >
>> > On Feb 19, 2012, at 6:24 PM, "Patrick Schmalstig / WRRJ Radio"
>> >  wrote:
>> >
>> >> Touchscreen I'm quite sure you can. I do not know much about
>> >> soundcards. If the soundcard you're using now works... you can use the
>> >> one you're using now.
>> >>
>> >> On Sun, Feb 19, 2012 at 6:21 PM, Troy Welch 
>> >> wrote:
>> >>> Sounds good to me. Just a couple quick questions.
>> >>>
>> >>> Can I get my dell touchscreen to work with it?
>> >>>
>> >>> And my delta 1010lt soundcard?
>> >>>
>> >>> Sent from my iPhone
>> >>>
>> >>> On Feb 19, 2012, at 6:17 PM, "Patrick Schmalstig / WRRJ Radio"
>> >>>  wrote:
>> >>>
>> >>>> That's what I'm going to do for Troy... except I have in my guide
>> >>>> there's other things that must be installed first so I'm doing that.
>> >>>>
>> >>>> On Sun, Feb 19, 2012 at 6:16 PM, Daniel Bair
>> >>>>  wrote:
>> >>>>> Guys,
>> >>>>>
>> >>>>> Rivendell 2 on Ubuntu is as easy as installing the tryphon repos and
>> >>>>> then
>> >>>>> installing the rivendell packages.
>> >>>>>
>> >>>>> http://www.tryphon.eu/en/blog/2012/01/05/rivendell-2.1.2-debian-ubuntu/
>> >>>>>
>> >>>>>
>> >>>>> -Daniel
>> >>>>> Family First Radio Network
>> >>>>>
>> >>>>>
>> >>>>>
>> >>>>> On Sun, Feb 19, 2012 at 4:55 PM, "Patrick Schmalstig / WRRJ Radio"
>> >>>>>  wrote:
>> >>>>>>
>> >>>>>> Subject: Re: [RDD] HELP???
>> >>>>>> To: User discussion about the Rivendell Radio Automation System
>> >>>>>> 
>> >>>>>> Message-ID:
>> >>>>>>
>> >>>>>>
>> >>>>>> 
>> >>>>>> Content-Type: text/plain; charset=ISO-8859-1
>> >>>>>>
>> >>>>>>
>> >>>>>> ...if you would like me to... if you want Rivendell 2 it's pretty
>> >>>>>> complicated so that'd probably be best. However... I cannot promise
>> >&g

Re: [RDD] HELP???

2012-02-20 Thread Troy `Welch

Thanks. When I look at the installation guide, I have no clue what most of it 
is talking about.
Not only am I new to Rivendell but I am also new to Linux. So I am trying to 
learn it all.
The basics of Linux are easy. It is just learning and understading how to 
install and tweak programs that is hard.
 
That is why it is much easier for me to just have someone log into the system 
and walk me thru it.
 
Troy
 

> To: rivendell-dev@lists.rivendellaudio.org
> Date: Mon, 20 Feb 2012 12:03:12 +
> From: waynemerri...@thevoiceasia.com
> Subject: Re: [RDD] HELP???
> 
> All the deltas I've tried have worked fine in Ubu (and Suse, Debian, 
> CentOS). I've used:
> 
> Delta 44s, 1010LTs and the full 1010 rack. Installing riv from source is 
> not really complicated unless you want to start doing things with JACK 
> which requires some tweaking. I have an old Ubuntu guide in pdf form that 
> is a mix of instructions and a learning aid 
> http://www.thevoiceasia.com/rivendell/Rivendell_2_on_Ubuntu_1104.pdf
> 
> Theres also a newer guide on the Wiki which deals with Debian 6 that is 
> more up to date and incorporates the extra stuff I learnt over the past 
> few months. I recommend taking the dependencies for Ubuntu from the PDF 
> but otherwise following the Debian Guide as some parts are much easier 
> than the init script stuff I used to do.
> 
> http://rivendell.tryphon.org/wiki/Rivendell_on_Debian_6
> 
> Regards,
> 
> Wayne
> 
> On Sun, 19 Feb 2012 23:31:53 -, Troy Welch  wrote:
> 
> > The sound card is not playing currently. There was a topic I noticed on 
> > the rivendell site that talked about the 1010 audio card.
> >
> > Sent from my iPhone
> >
> > On Feb 19, 2012, at 6:24 PM, "Patrick Schmalstig / WRRJ Radio" 
> >  wrote:
> >
> >> Touchscreen I'm quite sure you can. I do not know much about
> >> soundcards. If the soundcard you're using now works... you can use the
> >> one you're using now.
> >>
> >> On Sun, Feb 19, 2012 at 6:21 PM, Troy Welch  wrote:
> >>> Sounds good to me. Just a couple quick questions.
> >>>
> >>> Can I get my dell touchscreen to work with it?
> >>>
> >>> And my delta 1010lt soundcard?
> >>>
> >>> Sent from my iPhone
> >>>
> >>> On Feb 19, 2012, at 6:17 PM, "Patrick Schmalstig / WRRJ Radio" 
> >>>  wrote:
> >>>
> >>>> That's what I'm going to do for Troy... except I have in my guide
> >>>> there's other things that must be installed first so I'm doing that.
> >>>>
> >>>> On Sun, Feb 19, 2012 at 6:16 PM, Daniel Bair
> >>>>  wrote:
> >>>>> Guys,
> >>>>>
> >>>>> Rivendell 2 on Ubuntu is as easy as installing the tryphon repos and 
> >>>>> then
> >>>>> installing the rivendell packages.
> >>>>> http://www.tryphon.eu/en/blog/2012/01/05/rivendell-2.1.2-debian-ubuntu/
> >>>>>
> >>>>>
> >>>>> -Daniel
> >>>>> Family First Radio Network
> >>>>>
> >>>>>
> >>>>>
> >>>>> On Sun, Feb 19, 2012 at 4:55 PM, "Patrick Schmalstig / WRRJ Radio"
> >>>>>  wrote:
> >>>>>>
> >>>>>> Subject: Re: [RDD] HELP???
> >>>>>> To: User discussion about the Rivendell Radio Automation System
> >>>>>> 
> >>>>>> Message-ID:
> >>>>>>
> >>>>>> 
> >>>>>> Content-Type: text/plain; charset=ISO-8859-1
> >>>>>>
> >>>>>>
> >>>>>> ...if you would like me to... if you want Rivendell 2 it's pretty
> >>>>>> complicated so that'd probably be best. However... I cannot promise 
> >>>>>> I
> >>>>>> can get it working on 10.04LTS because it's been a while since I 
> >>>>>> used
> >>>>>> 10.04 (and I never used version 2 on 10.04). But I can try.
> >>>>>
> >>>>>
> >>>>>
> >>>>> ___
> >>>>> Rivendell-dev mailing list
> >>>>> Rivendell-dev@lists.rivendellaudio.org
> >>>>> http://lists.rivendellaudio.org/mailman/listinfo/rivendell-dev
> >>>>>
> >>>> ___

Re: [RDD] HELP???

2012-02-20 Thread Wayne Merricks
All the deltas I've tried have worked fine in Ubu (and Suse, Debian,  
CentOS).  I've used:

Delta 44s, 1010LTs and the full 1010 rack.  Installing riv from source is  
not really complicated unless you want to start doing things with JACK  
which requires some tweaking.  I have an old Ubuntu guide in pdf form that  
is a mix of instructions and a learning aid  
http://www.thevoiceasia.com/rivendell/Rivendell_2_on_Ubuntu_1104.pdf

Theres also a newer guide on the Wiki which deals with Debian 6 that is  
more up to date and incorporates the extra stuff I learnt over the past  
few months.  I recommend taking the dependencies for Ubuntu from the PDF  
but otherwise following the Debian Guide as some parts are much easier  
than the init script stuff I used to do.

http://rivendell.tryphon.org/wiki/Rivendell_on_Debian_6

Regards,

Wayne

On Sun, 19 Feb 2012 23:31:53 -, Troy Welch  wrote:

> The sound card is not playing currently. There was a topic I noticed on  
> the rivendell site that talked about the 1010 audio card.
>
> Sent from my iPhone
>
> On Feb 19, 2012, at 6:24 PM, "Patrick Schmalstig / WRRJ Radio"  
>  wrote:
>
>> Touchscreen I'm quite sure you can. I do not know much about
>> soundcards. If the soundcard you're using now works... you can use the
>> one you're using now.
>>
>> On Sun, Feb 19, 2012 at 6:21 PM, Troy Welch  wrote:
>>> Sounds good to me. Just a couple quick questions.
>>>
>>> Can I get my dell touchscreen to work with it?
>>>
>>> And my delta 1010lt soundcard?
>>>
>>> Sent from my iPhone
>>>
>>> On Feb 19, 2012, at 6:17 PM, "Patrick Schmalstig / WRRJ Radio"  
>>>  wrote:
>>>
>>>> That's what I'm going to do for Troy... except I have in my guide
>>>> there's other things that must be installed first so I'm doing that.
>>>>
>>>> On Sun, Feb 19, 2012 at 6:16 PM, Daniel Bair
>>>>  wrote:
>>>>> Guys,
>>>>>
>>>>> Rivendell 2 on Ubuntu is as easy as installing the tryphon repos and  
>>>>> then
>>>>> installing the rivendell packages.
>>>>> http://www.tryphon.eu/en/blog/2012/01/05/rivendell-2.1.2-debian-ubuntu/
>>>>>
>>>>>
>>>>> -Daniel
>>>>> Family First Radio Network
>>>>>
>>>>>
>>>>>
>>>>> On Sun, Feb 19, 2012 at 4:55 PM, "Patrick Schmalstig / WRRJ Radio"
>>>>>  wrote:
>>>>>>
>>>>>> Subject: Re: [RDD] HELP???
>>>>>> To: User discussion about the Rivendell Radio Automation System
>>>>>>
>>>>>> Message-ID:
>>>>>>
>>>>>>  
>>>>>> Content-Type: text/plain; charset=ISO-8859-1
>>>>>>
>>>>>>
>>>>>> ...if you would like me to... if you want Rivendell 2 it's pretty
>>>>>> complicated so that'd probably be best. However... I cannot promise  
>>>>>> I
>>>>>> can get it working on 10.04LTS because it's been a while since I  
>>>>>> used
>>>>>> 10.04 (and I never used version 2 on 10.04). But I can try.
>>>>>
>>>>>
>>>>>
>>>>> ___
>>>>> Rivendell-dev mailing list
>>>>> Rivendell-dev@lists.rivendellaudio.org
>>>>> http://lists.rivendellaudio.org/mailman/listinfo/rivendell-dev
>>>>>
>>>> ___
>>>> Rivendell-dev mailing list
>>>> Rivendell-dev@lists.rivendellaudio.org
>>>> http://lists.rivendellaudio.org/mailman/listinfo/rivendell-dev
>>>>
>>> ___
>>> Rivendell-dev mailing list
>>> Rivendell-dev@lists.rivendellaudio.org
>>> http://lists.rivendellaudio.org/mailman/listinfo/rivendell-dev
>> ___
>> Rivendell-dev mailing list
>> Rivendell-dev@lists.rivendellaudio.org
>> http://lists.rivendellaudio.org/mailman/listinfo/rivendell-dev
>>
> ___
> Rivendell-dev mailing list
> Rivendell-dev@lists.rivendellaudio.org
> http://lists.rivendellaudio.org/mailman/listinfo/rivendell-dev


-- 
Regards,

Wayne Merricks
The Voice Asia

###
Scanned by MailMarshal
###

###

Re: [RDD] HELP???

2012-02-19 Thread Patrick Schmalstig / WRRJ Radio
probably approximately 6pm... and good luck!

On Sun, Feb 19, 2012 at 9:49 PM, Troy Welch  wrote:
> The download just finished. So I will install it and see if you are around. 
> Otherwise what time did you say tomorrow? I am off all day tomorrow.
>
> Sent from my iPhone
>
> On Feb 19, 2012, at 6:34 PM, "Patrick Schmalstig / WRRJ Radio" 
>  wrote:
>
>> ...could just be an Ubuntu issue too because I've had that problem
>> before even though speaker still showed that it was playing.
>>
>> On Sun, Feb 19, 2012 at 6:31 PM, Troy Welch  wrote:
>>> The sound card is not playing currently. There was a topic I noticed on the 
>>> rivendell site that talked about the 1010 audio card.
>>>
>>> Sent from my iPhone
>>>
>>> On Feb 19, 2012, at 6:24 PM, "Patrick Schmalstig / WRRJ Radio" 
>>>  wrote:
>>>
>>>> Touchscreen I'm quite sure you can. I do not know much about
>>>> soundcards. If the soundcard you're using now works... you can use the
>>>> one you're using now.
>>>>
>>>> On Sun, Feb 19, 2012 at 6:21 PM, Troy Welch  wrote:
>>>>> Sounds good to me. Just a couple quick questions.
>>>>>
>>>>> Can I get my dell touchscreen to work with it?
>>>>>
>>>>> And my delta 1010lt soundcard?
>>>>>
>>>>> Sent from my iPhone
>>>>>
>>>>> On Feb 19, 2012, at 6:17 PM, "Patrick Schmalstig / WRRJ Radio" 
>>>>>  wrote:
>>>>>
>>>>>> That's what I'm going to do for Troy... except I have in my guide
>>>>>> there's other things that must be installed first so I'm doing that.
>>>>>>
>>>>>> On Sun, Feb 19, 2012 at 6:16 PM, Daniel Bair
>>>>>>  wrote:
>>>>>>> Guys,
>>>>>>>
>>>>>>> Rivendell 2 on Ubuntu is as easy as installing the tryphon repos and 
>>>>>>> then
>>>>>>> installing the rivendell packages.
>>>>>>> http://www.tryphon.eu/en/blog/2012/01/05/rivendell-2.1.2-debian-ubuntu/
>>>>>>>
>>>>>>>
>>>>>>> -Daniel
>>>>>>> Family First Radio Network
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>> On Sun, Feb 19, 2012 at 4:55 PM, "Patrick Schmalstig / WRRJ Radio"
>>>>>>>  wrote:
>>>>>>>>
>>>>>>>> Subject: Re: [RDD] HELP???
>>>>>>>> To: User discussion about the Rivendell Radio Automation System
>>>>>>>>        
>>>>>>>> Message-ID:
>>>>>>>>
>>>>>>>>  
>>>>>>>> Content-Type: text/plain; charset=ISO-8859-1
>>>>>>>>
>>>>>>>>
>>>>>>>> ...if you would like me to... if you want Rivendell 2 it's pretty
>>>>>>>> complicated so that'd probably be best. However... I cannot promise I
>>>>>>>> can get it working on 10.04LTS because it's been a while since I used
>>>>>>>> 10.04 (and I never used version 2 on 10.04). But I can try.
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>> ___
>>>>>>> Rivendell-dev mailing list
>>>>>>> Rivendell-dev@lists.rivendellaudio.org
>>>>>>> http://lists.rivendellaudio.org/mailman/listinfo/rivendell-dev
>>>>>>>
>>>>>> ___
>>>>>> Rivendell-dev mailing list
>>>>>> Rivendell-dev@lists.rivendellaudio.org
>>>>>> http://lists.rivendellaudio.org/mailman/listinfo/rivendell-dev
>>>>>>
>>>>> ___
>>>>> Rivendell-dev mailing list
>>>>> Rivendell-dev@lists.rivendellaudio.org
>>>>> http://lists.rivendellaudio.org/mailman/listinfo/rivendell-dev
>>>> ___
>>>> Rivendell-dev mailing list
>>>> Rivendell-dev@lists.rivendellaudio.org
>>>> http://lists.rivendellaudio.org/mailman/listinfo/rivendell-dev
>>>>
>>> ___
>>> Rivendell-dev mailing list
>>> Rivendell-dev@lists.rivendellaudio.org
>>> http://lists.rivendellaudio.org/mailman/listinfo/rivendell-dev
>> ___
>> Rivendell-dev mailing list
>> Rivendell-dev@lists.rivendellaudio.org
>> http://lists.rivendellaudio.org/mailman/listinfo/rivendell-dev
>>
> ___
> Rivendell-dev mailing list
> Rivendell-dev@lists.rivendellaudio.org
> http://lists.rivendellaudio.org/mailman/listinfo/rivendell-dev
___
Rivendell-dev mailing list
Rivendell-dev@lists.rivendellaudio.org
http://lists.rivendellaudio.org/mailman/listinfo/rivendell-dev


Re: [RDD] HELP???

2012-02-19 Thread Troy Welch
The download just finished. So I will install it and see if you are around. 
Otherwise what time did you say tomorrow? I am off all day tomorrow. 

Sent from my iPhone

On Feb 19, 2012, at 6:34 PM, "Patrick Schmalstig / WRRJ Radio" 
 wrote:

> ...could just be an Ubuntu issue too because I've had that problem
> before even though speaker still showed that it was playing.
> 
> On Sun, Feb 19, 2012 at 6:31 PM, Troy Welch  wrote:
>> The sound card is not playing currently. There was a topic I noticed on the 
>> rivendell site that talked about the 1010 audio card.
>> 
>> Sent from my iPhone
>> 
>> On Feb 19, 2012, at 6:24 PM, "Patrick Schmalstig / WRRJ Radio" 
>>  wrote:
>> 
>>> Touchscreen I'm quite sure you can. I do not know much about
>>> soundcards. If the soundcard you're using now works... you can use the
>>> one you're using now.
>>> 
>>> On Sun, Feb 19, 2012 at 6:21 PM, Troy Welch  wrote:
>>>> Sounds good to me. Just a couple quick questions.
>>>> 
>>>> Can I get my dell touchscreen to work with it?
>>>> 
>>>> And my delta 1010lt soundcard?
>>>> 
>>>> Sent from my iPhone
>>>> 
>>>> On Feb 19, 2012, at 6:17 PM, "Patrick Schmalstig / WRRJ Radio" 
>>>>  wrote:
>>>> 
>>>>> That's what I'm going to do for Troy... except I have in my guide
>>>>> there's other things that must be installed first so I'm doing that.
>>>>> 
>>>>> On Sun, Feb 19, 2012 at 6:16 PM, Daniel Bair
>>>>>  wrote:
>>>>>> Guys,
>>>>>> 
>>>>>> Rivendell 2 on Ubuntu is as easy as installing the tryphon repos and then
>>>>>> installing the rivendell packages.
>>>>>> http://www.tryphon.eu/en/blog/2012/01/05/rivendell-2.1.2-debian-ubuntu/
>>>>>> 
>>>>>> 
>>>>>> -Daniel
>>>>>> Family First Radio Network
>>>>>> 
>>>>>> 
>>>>>> 
>>>>>> On Sun, Feb 19, 2012 at 4:55 PM, "Patrick Schmalstig / WRRJ Radio"
>>>>>>  wrote:
>>>>>>> 
>>>>>>> Subject: Re: [RDD] HELP???
>>>>>>> To: User discussion about the Rivendell Radio Automation System
>>>>>>>
>>>>>>> Message-ID:
>>>>>>> 
>>>>>>>  
>>>>>>> Content-Type: text/plain; charset=ISO-8859-1
>>>>>>> 
>>>>>>> 
>>>>>>> ...if you would like me to... if you want Rivendell 2 it's pretty
>>>>>>> complicated so that'd probably be best. However... I cannot promise I
>>>>>>> can get it working on 10.04LTS because it's been a while since I used
>>>>>>> 10.04 (and I never used version 2 on 10.04). But I can try.
>>>>>> 
>>>>>> 
>>>>>> 
>>>>>> ___
>>>>>> Rivendell-dev mailing list
>>>>>> Rivendell-dev@lists.rivendellaudio.org
>>>>>> http://lists.rivendellaudio.org/mailman/listinfo/rivendell-dev
>>>>>> 
>>>>> ___
>>>>> Rivendell-dev mailing list
>>>>> Rivendell-dev@lists.rivendellaudio.org
>>>>> http://lists.rivendellaudio.org/mailman/listinfo/rivendell-dev
>>>>> 
>>>> ___
>>>> Rivendell-dev mailing list
>>>> Rivendell-dev@lists.rivendellaudio.org
>>>> http://lists.rivendellaudio.org/mailman/listinfo/rivendell-dev
>>> ___
>>> Rivendell-dev mailing list
>>> Rivendell-dev@lists.rivendellaudio.org
>>> http://lists.rivendellaudio.org/mailman/listinfo/rivendell-dev
>>> 
>> ___
>> Rivendell-dev mailing list
>> Rivendell-dev@lists.rivendellaudio.org
>> http://lists.rivendellaudio.org/mailman/listinfo/rivendell-dev
> ___
> Rivendell-dev mailing list
> Rivendell-dev@lists.rivendellaudio.org
> http://lists.rivendellaudio.org/mailman/listinfo/rivendell-dev
> 
___
Rivendell-dev mailing list
Rivendell-dev@lists.rivendellaudio.org
http://lists.rivendellaudio.org/mailman/listinfo/rivendell-dev


Re: [RDD] HELP???

2012-02-19 Thread Patrick Schmalstig / WRRJ Radio
...could just be an Ubuntu issue too because I've had that problem
before even though speaker still showed that it was playing.

On Sun, Feb 19, 2012 at 6:31 PM, Troy Welch  wrote:
> The sound card is not playing currently. There was a topic I noticed on the 
> rivendell site that talked about the 1010 audio card.
>
> Sent from my iPhone
>
> On Feb 19, 2012, at 6:24 PM, "Patrick Schmalstig / WRRJ Radio" 
>  wrote:
>
>> Touchscreen I'm quite sure you can. I do not know much about
>> soundcards. If the soundcard you're using now works... you can use the
>> one you're using now.
>>
>> On Sun, Feb 19, 2012 at 6:21 PM, Troy Welch  wrote:
>>> Sounds good to me. Just a couple quick questions.
>>>
>>> Can I get my dell touchscreen to work with it?
>>>
>>> And my delta 1010lt soundcard?
>>>
>>> Sent from my iPhone
>>>
>>> On Feb 19, 2012, at 6:17 PM, "Patrick Schmalstig / WRRJ Radio" 
>>>  wrote:
>>>
>>>> That's what I'm going to do for Troy... except I have in my guide
>>>> there's other things that must be installed first so I'm doing that.
>>>>
>>>> On Sun, Feb 19, 2012 at 6:16 PM, Daniel Bair
>>>>  wrote:
>>>>> Guys,
>>>>>
>>>>> Rivendell 2 on Ubuntu is as easy as installing the tryphon repos and then
>>>>> installing the rivendell packages.
>>>>> http://www.tryphon.eu/en/blog/2012/01/05/rivendell-2.1.2-debian-ubuntu/
>>>>>
>>>>>
>>>>> -Daniel
>>>>> Family First Radio Network
>>>>>
>>>>>
>>>>>
>>>>> On Sun, Feb 19, 2012 at 4:55 PM, "Patrick Schmalstig / WRRJ Radio"
>>>>>  wrote:
>>>>>>
>>>>>> Subject: Re: [RDD] HELP???
>>>>>> To: User discussion about the Rivendell Radio Automation System
>>>>>>        
>>>>>> Message-ID:
>>>>>>
>>>>>>  
>>>>>> Content-Type: text/plain; charset=ISO-8859-1
>>>>>>
>>>>>>
>>>>>> ...if you would like me to... if you want Rivendell 2 it's pretty
>>>>>> complicated so that'd probably be best. However... I cannot promise I
>>>>>> can get it working on 10.04LTS because it's been a while since I used
>>>>>> 10.04 (and I never used version 2 on 10.04). But I can try.
>>>>>
>>>>>
>>>>>
>>>>> ___
>>>>> Rivendell-dev mailing list
>>>>> Rivendell-dev@lists.rivendellaudio.org
>>>>> http://lists.rivendellaudio.org/mailman/listinfo/rivendell-dev
>>>>>
>>>> ___
>>>> Rivendell-dev mailing list
>>>> Rivendell-dev@lists.rivendellaudio.org
>>>> http://lists.rivendellaudio.org/mailman/listinfo/rivendell-dev
>>>>
>>> ___
>>> Rivendell-dev mailing list
>>> Rivendell-dev@lists.rivendellaudio.org
>>> http://lists.rivendellaudio.org/mailman/listinfo/rivendell-dev
>> ___
>> Rivendell-dev mailing list
>> Rivendell-dev@lists.rivendellaudio.org
>> http://lists.rivendellaudio.org/mailman/listinfo/rivendell-dev
>>
> ___
> Rivendell-dev mailing list
> Rivendell-dev@lists.rivendellaudio.org
> http://lists.rivendellaudio.org/mailman/listinfo/rivendell-dev
___
Rivendell-dev mailing list
Rivendell-dev@lists.rivendellaudio.org
http://lists.rivendellaudio.org/mailman/listinfo/rivendell-dev


Re: [RDD] HELP???

2012-02-19 Thread Troy Welch
The sound card is not playing currently. There was a topic I noticed on the 
rivendell site that talked about the 1010 audio card. 

Sent from my iPhone

On Feb 19, 2012, at 6:24 PM, "Patrick Schmalstig / WRRJ Radio" 
 wrote:

> Touchscreen I'm quite sure you can. I do not know much about
> soundcards. If the soundcard you're using now works... you can use the
> one you're using now.
> 
> On Sun, Feb 19, 2012 at 6:21 PM, Troy Welch  wrote:
>> Sounds good to me. Just a couple quick questions.
>> 
>> Can I get my dell touchscreen to work with it?
>> 
>> And my delta 1010lt soundcard?
>> 
>> Sent from my iPhone
>> 
>> On Feb 19, 2012, at 6:17 PM, "Patrick Schmalstig / WRRJ Radio" 
>>  wrote:
>> 
>>> That's what I'm going to do for Troy... except I have in my guide
>>> there's other things that must be installed first so I'm doing that.
>>> 
>>> On Sun, Feb 19, 2012 at 6:16 PM, Daniel Bair
>>>  wrote:
>>>> Guys,
>>>> 
>>>> Rivendell 2 on Ubuntu is as easy as installing the tryphon repos and then
>>>> installing the rivendell packages.
>>>> http://www.tryphon.eu/en/blog/2012/01/05/rivendell-2.1.2-debian-ubuntu/
>>>> 
>>>> 
>>>> -Daniel
>>>> Family First Radio Network
>>>> 
>>>> 
>>>> 
>>>> On Sun, Feb 19, 2012 at 4:55 PM, "Patrick Schmalstig / WRRJ Radio"
>>>>  wrote:
>>>>> 
>>>>> Subject: Re: [RDD] HELP???
>>>>> To: User discussion about the Rivendell Radio Automation System
>>>>>
>>>>> Message-ID:
>>>>> 
>>>>>  
>>>>> Content-Type: text/plain; charset=ISO-8859-1
>>>>> 
>>>>> 
>>>>> ...if you would like me to... if you want Rivendell 2 it's pretty
>>>>> complicated so that'd probably be best. However... I cannot promise I
>>>>> can get it working on 10.04LTS because it's been a while since I used
>>>>> 10.04 (and I never used version 2 on 10.04). But I can try.
>>>> 
>>>> 
>>>> 
>>>> ___
>>>> Rivendell-dev mailing list
>>>> Rivendell-dev@lists.rivendellaudio.org
>>>> http://lists.rivendellaudio.org/mailman/listinfo/rivendell-dev
>>>> 
>>> ___
>>> Rivendell-dev mailing list
>>> Rivendell-dev@lists.rivendellaudio.org
>>> http://lists.rivendellaudio.org/mailman/listinfo/rivendell-dev
>>> 
>> ___
>> Rivendell-dev mailing list
>> Rivendell-dev@lists.rivendellaudio.org
>> http://lists.rivendellaudio.org/mailman/listinfo/rivendell-dev
> ___
> Rivendell-dev mailing list
> Rivendell-dev@lists.rivendellaudio.org
> http://lists.rivendellaudio.org/mailman/listinfo/rivendell-dev
> 
___
Rivendell-dev mailing list
Rivendell-dev@lists.rivendellaudio.org
http://lists.rivendellaudio.org/mailman/listinfo/rivendell-dev


Re: [RDD] HELP???

2012-02-19 Thread Patrick Schmalstig / WRRJ Radio
Touchscreen I'm quite sure you can. I do not know much about
soundcards. If the soundcard you're using now works... you can use the
one you're using now.

On Sun, Feb 19, 2012 at 6:21 PM, Troy Welch  wrote:
> Sounds good to me. Just a couple quick questions.
>
> Can I get my dell touchscreen to work with it?
>
> And my delta 1010lt soundcard?
>
> Sent from my iPhone
>
> On Feb 19, 2012, at 6:17 PM, "Patrick Schmalstig / WRRJ Radio" 
>  wrote:
>
>> That's what I'm going to do for Troy... except I have in my guide
>> there's other things that must be installed first so I'm doing that.
>>
>> On Sun, Feb 19, 2012 at 6:16 PM, Daniel Bair
>>  wrote:
>>> Guys,
>>>
>>> Rivendell 2 on Ubuntu is as easy as installing the tryphon repos and then
>>> installing the rivendell packages.
>>> http://www.tryphon.eu/en/blog/2012/01/05/rivendell-2.1.2-debian-ubuntu/
>>>
>>>
>>> -Daniel
>>> Family First Radio Network
>>>
>>>
>>>
>>> On Sun, Feb 19, 2012 at 4:55 PM, "Patrick Schmalstig / WRRJ Radio"
>>>  wrote:
>>>>
>>>> Subject: Re: [RDD] HELP???
>>>> To: User discussion about the Rivendell Radio Automation System
>>>>        
>>>> Message-ID:
>>>>
>>>>  
>>>> Content-Type: text/plain; charset=ISO-8859-1
>>>>
>>>>
>>>> ...if you would like me to... if you want Rivendell 2 it's pretty
>>>> complicated so that'd probably be best. However... I cannot promise I
>>>> can get it working on 10.04LTS because it's been a while since I used
>>>> 10.04 (and I never used version 2 on 10.04). But I can try.
>>>
>>>
>>>
>>> ___
>>> Rivendell-dev mailing list
>>> Rivendell-dev@lists.rivendellaudio.org
>>> http://lists.rivendellaudio.org/mailman/listinfo/rivendell-dev
>>>
>> ___
>> Rivendell-dev mailing list
>> Rivendell-dev@lists.rivendellaudio.org
>> http://lists.rivendellaudio.org/mailman/listinfo/rivendell-dev
>>
> ___
> Rivendell-dev mailing list
> Rivendell-dev@lists.rivendellaudio.org
> http://lists.rivendellaudio.org/mailman/listinfo/rivendell-dev
___
Rivendell-dev mailing list
Rivendell-dev@lists.rivendellaudio.org
http://lists.rivendellaudio.org/mailman/listinfo/rivendell-dev


Re: [RDD] HELP???

2012-02-19 Thread Troy Welch
Sounds good to me. Just a couple quick questions. 

Can I get my dell touchscreen to work with it?

And my delta 1010lt soundcard?

Sent from my iPhone

On Feb 19, 2012, at 6:17 PM, "Patrick Schmalstig / WRRJ Radio" 
 wrote:

> That's what I'm going to do for Troy... except I have in my guide
> there's other things that must be installed first so I'm doing that.
> 
> On Sun, Feb 19, 2012 at 6:16 PM, Daniel Bair
>  wrote:
>> Guys,
>> 
>> Rivendell 2 on Ubuntu is as easy as installing the tryphon repos and then
>> installing the rivendell packages.
>> http://www.tryphon.eu/en/blog/2012/01/05/rivendell-2.1.2-debian-ubuntu/
>> 
>> 
>> -Daniel
>> Family First Radio Network
>> 
>> 
>> 
>> On Sun, Feb 19, 2012 at 4:55 PM, "Patrick Schmalstig / WRRJ Radio"
>>  wrote:
>>> 
>>> Subject: Re: [RDD] HELP???
>>> To: User discussion about the Rivendell Radio Automation System
>>>
>>> Message-ID:
>>> 
>>>  
>>> Content-Type: text/plain; charset=ISO-8859-1
>>> 
>>> 
>>> ...if you would like me to... if you want Rivendell 2 it's pretty
>>> complicated so that'd probably be best. However... I cannot promise I
>>> can get it working on 10.04LTS because it's been a while since I used
>>> 10.04 (and I never used version 2 on 10.04). But I can try.
>> 
>> 
>> 
>> ___
>> Rivendell-dev mailing list
>> Rivendell-dev@lists.rivendellaudio.org
>> http://lists.rivendellaudio.org/mailman/listinfo/rivendell-dev
>> 
> ___
> Rivendell-dev mailing list
> Rivendell-dev@lists.rivendellaudio.org
> http://lists.rivendellaudio.org/mailman/listinfo/rivendell-dev
> 
___
Rivendell-dev mailing list
Rivendell-dev@lists.rivendellaudio.org
http://lists.rivendellaudio.org/mailman/listinfo/rivendell-dev


Re: [RDD] HELP???

2012-02-19 Thread Patrick Schmalstig / WRRJ Radio
That's what I'm going to do for Troy... except I have in my guide
there's other things that must be installed first so I'm doing that.

On Sun, Feb 19, 2012 at 6:16 PM, Daniel Bair
 wrote:
> Guys,
>
> Rivendell 2 on Ubuntu is as easy as installing the tryphon repos and then
> installing the rivendell packages.
> http://www.tryphon.eu/en/blog/2012/01/05/rivendell-2.1.2-debian-ubuntu/
>
>
> -Daniel
> Family First Radio Network
>
>
>
> On Sun, Feb 19, 2012 at 4:55 PM, "Patrick Schmalstig / WRRJ Radio"
>  wrote:
>>
>> Subject: Re: [RDD] HELP???
>> To: User discussion about the Rivendell Radio Automation System
>>        
>> Message-ID:
>>
>>  
>> Content-Type: text/plain; charset=ISO-8859-1
>>
>>
>> ...if you would like me to... if you want Rivendell 2 it's pretty
>> complicated so that'd probably be best. However... I cannot promise I
>> can get it working on 10.04LTS because it's been a while since I used
>> 10.04 (and I never used version 2 on 10.04). But I can try.
>
>
>
> ___
> Rivendell-dev mailing list
> Rivendell-dev@lists.rivendellaudio.org
> http://lists.rivendellaudio.org/mailman/listinfo/rivendell-dev
>
___
Rivendell-dev mailing list
Rivendell-dev@lists.rivendellaudio.org
http://lists.rivendellaudio.org/mailman/listinfo/rivendell-dev


Re: [RDD] HELP???

2012-02-19 Thread Daniel Bair
Guys,

Rivendell 2 on Ubuntu is as easy as installing the tryphon repos and then
installing the rivendell packages.
http://www.tryphon.eu/en/blog/2012/01/05/rivendell-2.1.2-debian-ubuntu/


-Daniel
Family First Radio Network



On Sun, Feb 19, 2012 at 4:55 PM, "Patrick Schmalstig / WRRJ Radio" <
xana...@gmail.com> wrote:
>
>  Subject: Re: [RDD] HELP???
> To: User discussion about the Rivendell Radio Automation System
>
> Message-ID:
> >
> Content-Type: text/plain; charset=ISO-8859-1
>
> ...if you would like me to... if you want Rivendell 2 it's pretty
> complicated so that'd probably be best. However... I cannot promise I
> can get it working on 10.04LTS because it's been a while since I used
> 10.04 (and I never used version 2 on 10.04). But I can try.
>
___
Rivendell-dev mailing list
Rivendell-dev@lists.rivendellaudio.org
http://lists.rivendellaudio.org/mailman/listinfo/rivendell-dev


Re: [RDD] HELP???

2012-02-19 Thread Patrick Schmalstig / WRRJ Radio
Alright go to my website at www.wrrj.org . (It's a little slow please
be patient). At the bottom left is a chat box (might need to scroll
down towards bottom and it's under a few other things). Meet me, WRRJ,
there and I'll give you mesh client install instructions (if I give
them here being google groups it would go public which is unsafe)

On Sun, Feb 19, 2012 at 5:55 PM, Troy Welch  wrote:
> Ok
>
> Sent from my iPhone
>
> On Feb 19, 2012, at 5:52 PM, "Patrick Schmalstig / WRRJ Radio" 
>  wrote:
>
>> I have an account on mesh central... so type this in a terminal to
>> install the certificate thing so that I can connect with you. Mesh
>> Central doesn't have a live chat function... so please give me a
>> moment to get a method for chat... and I'll also tell you how to
>> install that mesh client.
>>
>> On Sun, Feb 19, 2012 at 5:47 PM, Troy `Welch  wrote:
>>> That would be great. How do we make contact?
>>>
>>>
>>>> Date: Sun, 19 Feb 2012 17:32:53 -0500
>>>> From: xana...@gmail.com
>>>> To: rivendell-dev@lists.rivendellaudio.org
>>>> Subject: Re: [RDD] HELP???
>>>
>>>>
>>>> ...I found a guide on installing on 10.04... actually two of them...
>>>> so that'll help me out if you wish for me to install it for you.
>>>>
>>>> On Sun, Feb 19, 2012 at 5:30 PM, Patrick Schmalstig / WRRJ Radio
>>>>  wrote:
>>>>> ...if you would like me to... if you want Rivendell 2 it's pretty
>>>>> complicated so that'd probably be best. However... I cannot promise I
>>>>> can get it working on 10.04LTS because it's been a while since I used
>>>>> 10.04 (and I never used version 2 on 10.04). But I can try.
>>>>>
>>>>> On Sun, Feb 19, 2012 at 5:26 PM, Troy Welch  wrote:
>>>>>> I could also do a direct connect remote assistance if you could assist
>>>>>> that way as well.
>>>>>>
>>>>>> Or thru chat?
>>>>>>
>>>>>> Sent from my iPhone
>>>>>>
>>>>>> On Feb 19, 2012, at 5:24 PM, Troy Welch  wrote:
>>>>>>
>>>>>>> 10.04 lts
>>>>>>>
>>>>>>> Sent from my iPhone
>>>>>>>
>>>>>>> On Feb 19, 2012, at 5:03 PM, "Patrick Schmalstig / WRRJ Radio"
>>>>>>>  wrote:
>>>>>>>
>>>>>>>> I can try... what version of Ubuntu?
>>>>>>>>
>>>>>>>> On Sun, Feb 19, 2012 at 4:21 PM, Troy `Welch 
>>>>>>>> wrote:
>>>>>>>>> Anyone willing to assist with installing Rivendell on Ubuntu?
>>>>>>>>>
>>>>>>>>> I am very new to this and have no idea how to install the software.
>>>>>>>>>
>>>>>>>>> Willing to allow someone to connect to the machine if need be.
>>>>>>>>>
>>>>>>>>> Anyone?
>>>>>>>>>
>>>>>>>>> Troy
>>>>>>>>>
>>>>>>>>> ___
>>>>>>>>> Rivendell-dev mailing list
>>>>>>>>> Rivendell-dev@lists.rivendellaudio.org
>>>>>>>>> http://lists.rivendellaudio.org/mailman/listinfo/rivendell-dev
>>>>>>>>>
>>>>>>>> ___
>>>>>>>> Rivendell-dev mailing list
>>>>>>>> Rivendell-dev@lists.rivendellaudio.org
>>>>>>>> http://lists.rivendellaudio.org/mailman/listinfo/rivendell-dev
>>>>>>>>
>>>>>>> ___
>>>>>>> Rivendell-dev mailing list
>>>>>>> Rivendell-dev@lists.rivendellaudio.org
>>>>>>> http://lists.rivendellaudio.org/mailman/listinfo/rivendell-dev
>>>>>>>
>>>>>> ___
>>>>>> Rivendell-dev mailing list
>>>>>> Rivendell-dev@lists.rivendellaudio.org
>>>>>> http://lists.rivendellaudio.org/mailman/listinfo/rivendell-dev
>>>> ___
>>>> Rivendell-dev mailing list
>>>> Rivendell-dev@lists.rivendellaudio.org
>>>> http://lists.rivendellaudio.org/mailman/listinfo/rivendell-dev
>>>
>>> ___
>>> Rivendell-dev mailing list
>>> Rivendell-dev@lists.rivendellaudio.org
>>> http://lists.rivendellaudio.org/mailman/listinfo/rivendell-dev
>>>
>> ___
>> Rivendell-dev mailing list
>> Rivendell-dev@lists.rivendellaudio.org
>> http://lists.rivendellaudio.org/mailman/listinfo/rivendell-dev
>>
> ___
> Rivendell-dev mailing list
> Rivendell-dev@lists.rivendellaudio.org
> http://lists.rivendellaudio.org/mailman/listinfo/rivendell-dev
___
Rivendell-dev mailing list
Rivendell-dev@lists.rivendellaudio.org
http://lists.rivendellaudio.org/mailman/listinfo/rivendell-dev


Re: [RDD] HELP???

2012-02-19 Thread Troy Welch
Ok

Sent from my iPhone

On Feb 19, 2012, at 5:52 PM, "Patrick Schmalstig / WRRJ Radio" 
 wrote:

> I have an account on mesh central... so type this in a terminal to
> install the certificate thing so that I can connect with you. Mesh
> Central doesn't have a live chat function... so please give me a
> moment to get a method for chat... and I'll also tell you how to
> install that mesh client.
> 
> On Sun, Feb 19, 2012 at 5:47 PM, Troy `Welch  wrote:
>> That would be great. How do we make contact?
>> 
>> 
>>> Date: Sun, 19 Feb 2012 17:32:53 -0500
>>> From: xana...@gmail.com
>>> To: rivendell-dev@lists.rivendellaudio.org
>>> Subject: Re: [RDD] HELP???
>> 
>>> 
>>> ...I found a guide on installing on 10.04... actually two of them...
>>> so that'll help me out if you wish for me to install it for you.
>>> 
>>> On Sun, Feb 19, 2012 at 5:30 PM, Patrick Schmalstig / WRRJ Radio
>>>  wrote:
>>>> ...if you would like me to... if you want Rivendell 2 it's pretty
>>>> complicated so that'd probably be best. However... I cannot promise I
>>>> can get it working on 10.04LTS because it's been a while since I used
>>>> 10.04 (and I never used version 2 on 10.04). But I can try.
>>>> 
>>>> On Sun, Feb 19, 2012 at 5:26 PM, Troy Welch  wrote:
>>>>> I could also do a direct connect remote assistance if you could assist
>>>>> that way as well.
>>>>> 
>>>>> Or thru chat?
>>>>> 
>>>>> Sent from my iPhone
>>>>> 
>>>>> On Feb 19, 2012, at 5:24 PM, Troy Welch  wrote:
>>>>> 
>>>>>> 10.04 lts
>>>>>> 
>>>>>> Sent from my iPhone
>>>>>> 
>>>>>> On Feb 19, 2012, at 5:03 PM, "Patrick Schmalstig / WRRJ Radio"
>>>>>>  wrote:
>>>>>> 
>>>>>>> I can try... what version of Ubuntu?
>>>>>>> 
>>>>>>> On Sun, Feb 19, 2012 at 4:21 PM, Troy `Welch 
>>>>>>> wrote:
>>>>>>>> Anyone willing to assist with installing Rivendell on Ubuntu?
>>>>>>>> 
>>>>>>>> I am very new to this and have no idea how to install the software.
>>>>>>>> 
>>>>>>>> Willing to allow someone to connect to the machine if need be.
>>>>>>>> 
>>>>>>>> Anyone?
>>>>>>>> 
>>>>>>>> Troy
>>>>>>>> 
>>>>>>>> ___
>>>>>>>> Rivendell-dev mailing list
>>>>>>>> Rivendell-dev@lists.rivendellaudio.org
>>>>>>>> http://lists.rivendellaudio.org/mailman/listinfo/rivendell-dev
>>>>>>>> 
>>>>>>> ___
>>>>>>> Rivendell-dev mailing list
>>>>>>> Rivendell-dev@lists.rivendellaudio.org
>>>>>>> http://lists.rivendellaudio.org/mailman/listinfo/rivendell-dev
>>>>>>> 
>>>>>> ___
>>>>>> Rivendell-dev mailing list
>>>>>> Rivendell-dev@lists.rivendellaudio.org
>>>>>> http://lists.rivendellaudio.org/mailman/listinfo/rivendell-dev
>>>>>> 
>>>>> ___
>>>>> Rivendell-dev mailing list
>>>>> Rivendell-dev@lists.rivendellaudio.org
>>>>> http://lists.rivendellaudio.org/mailman/listinfo/rivendell-dev
>>> ___
>>> Rivendell-dev mailing list
>>> Rivendell-dev@lists.rivendellaudio.org
>>> http://lists.rivendellaudio.org/mailman/listinfo/rivendell-dev
>> 
>> ___
>> Rivendell-dev mailing list
>> Rivendell-dev@lists.rivendellaudio.org
>> http://lists.rivendellaudio.org/mailman/listinfo/rivendell-dev
>> 
> ___
> Rivendell-dev mailing list
> Rivendell-dev@lists.rivendellaudio.org
> http://lists.rivendellaudio.org/mailman/listinfo/rivendell-dev
> 
___
Rivendell-dev mailing list
Rivendell-dev@lists.rivendellaudio.org
http://lists.rivendellaudio.org/mailman/listinfo/rivendell-dev


Re: [RDD] HELP???

2012-02-19 Thread Patrick Schmalstig / WRRJ Radio
I have an account on mesh central... so type this in a terminal to
install the certificate thing so that I can connect with you. Mesh
Central doesn't have a live chat function... so please give me a
moment to get a method for chat... and I'll also tell you how to
install that mesh client.

On Sun, Feb 19, 2012 at 5:47 PM, Troy `Welch  wrote:
> That would be great. How do we make contact?
>
>
>> Date: Sun, 19 Feb 2012 17:32:53 -0500
>> From: xana...@gmail.com
>> To: rivendell-dev@lists.rivendellaudio.org
>> Subject: Re: [RDD] HELP???
>
>>
>> ...I found a guide on installing on 10.04... actually two of them...
>> so that'll help me out if you wish for me to install it for you.
>>
>> On Sun, Feb 19, 2012 at 5:30 PM, Patrick Schmalstig / WRRJ Radio
>>  wrote:
>> > ...if you would like me to... if you want Rivendell 2 it's pretty
>> > complicated so that'd probably be best. However... I cannot promise I
>> > can get it working on 10.04LTS because it's been a while since I used
>> > 10.04 (and I never used version 2 on 10.04). But I can try.
>> >
>> > On Sun, Feb 19, 2012 at 5:26 PM, Troy Welch  wrote:
>> >> I could also do a direct connect remote assistance if you could assist
>> >> that way as well.
>> >>
>> >> Or thru chat?
>> >>
>> >> Sent from my iPhone
>> >>
>> >> On Feb 19, 2012, at 5:24 PM, Troy Welch  wrote:
>> >>
>> >>> 10.04 lts
>> >>>
>> >>> Sent from my iPhone
>> >>>
>> >>> On Feb 19, 2012, at 5:03 PM, "Patrick Schmalstig / WRRJ Radio"
>> >>>  wrote:
>> >>>
>> >>>> I can try... what version of Ubuntu?
>> >>>>
>> >>>> On Sun, Feb 19, 2012 at 4:21 PM, Troy `Welch 
>> >>>> wrote:
>> >>>>> Anyone willing to assist with installing Rivendell on Ubuntu?
>> >>>>>
>> >>>>> I am very new to this and have no idea how to install the software.
>> >>>>>
>> >>>>> Willing to allow someone to connect to the machine if need be.
>> >>>>>
>> >>>>> Anyone?
>> >>>>>
>> >>>>> Troy
>> >>>>>
>> >>>>> ___
>> >>>>> Rivendell-dev mailing list
>> >>>>> Rivendell-dev@lists.rivendellaudio.org
>> >>>>> http://lists.rivendellaudio.org/mailman/listinfo/rivendell-dev
>> >>>>>
>> >>>> ___
>> >>>> Rivendell-dev mailing list
>> >>>> Rivendell-dev@lists.rivendellaudio.org
>> >>>> http://lists.rivendellaudio.org/mailman/listinfo/rivendell-dev
>> >>>>
>> >>> ___
>> >>> Rivendell-dev mailing list
>> >>> Rivendell-dev@lists.rivendellaudio.org
>> >>> http://lists.rivendellaudio.org/mailman/listinfo/rivendell-dev
>> >>>
>> >> ___
>> >> Rivendell-dev mailing list
>> >> Rivendell-dev@lists.rivendellaudio.org
>> >> http://lists.rivendellaudio.org/mailman/listinfo/rivendell-dev
>> ___
>> Rivendell-dev mailing list
>> Rivendell-dev@lists.rivendellaudio.org
>> http://lists.rivendellaudio.org/mailman/listinfo/rivendell-dev
>
> ___
> Rivendell-dev mailing list
> Rivendell-dev@lists.rivendellaudio.org
> http://lists.rivendellaudio.org/mailman/listinfo/rivendell-dev
>
___
Rivendell-dev mailing list
Rivendell-dev@lists.rivendellaudio.org
http://lists.rivendellaudio.org/mailman/listinfo/rivendell-dev


Re: [RDD] HELP???

2012-02-19 Thread Troy `Welch

That would be great. How do we make contact?


> Date: Sun, 19 Feb 2012 17:32:53 -0500
> From: xana...@gmail.com
> To: rivendell-dev@lists.rivendellaudio.org
> Subject: Re: [RDD] HELP???
> 
> ...I found a guide on installing on 10.04... actually two of them...
> so that'll help me out if you wish for me to install it for you.
> 
> On Sun, Feb 19, 2012 at 5:30 PM, Patrick Schmalstig / WRRJ Radio
>  wrote:
> > ...if you would like me to... if you want Rivendell 2 it's pretty
> > complicated so that'd probably be best. However... I cannot promise I
> > can get it working on 10.04LTS because it's been a while since I used
> > 10.04 (and I never used version 2 on 10.04). But I can try.
> >
> > On Sun, Feb 19, 2012 at 5:26 PM, Troy Welch  wrote:
> >> I could also do a direct connect remote assistance if you could assist 
> >> that way as well.
> >>
> >> Or thru chat?
> >>
> >> Sent from my iPhone
> >>
> >> On Feb 19, 2012, at 5:24 PM, Troy Welch  wrote:
> >>
> >>> 10.04 lts
> >>>
> >>> Sent from my iPhone
> >>>
> >>> On Feb 19, 2012, at 5:03 PM, "Patrick Schmalstig / WRRJ Radio" 
> >>>  wrote:
> >>>
> >>>> I can try... what version of Ubuntu?
> >>>>
> >>>> On Sun, Feb 19, 2012 at 4:21 PM, Troy `Welch  wrote:
> >>>>> Anyone willing to assist with installing Rivendell on Ubuntu?
> >>>>>
> >>>>> I am very new to this and have no idea how to install the software.
> >>>>>
> >>>>> Willing to allow someone to connect to the machine if need be.
> >>>>>
> >>>>> Anyone?
> >>>>>
> >>>>> Troy
> >>>>>
> >>>>> ___
> >>>>> Rivendell-dev mailing list
> >>>>> Rivendell-dev@lists.rivendellaudio.org
> >>>>> http://lists.rivendellaudio.org/mailman/listinfo/rivendell-dev
> >>>>>
> >>>> ___
> >>>> Rivendell-dev mailing list
> >>>> Rivendell-dev@lists.rivendellaudio.org
> >>>> http://lists.rivendellaudio.org/mailman/listinfo/rivendell-dev
> >>>>
> >>> ___
> >>> Rivendell-dev mailing list
> >>> Rivendell-dev@lists.rivendellaudio.org
> >>> http://lists.rivendellaudio.org/mailman/listinfo/rivendell-dev
> >>>
> >> ___
> >> Rivendell-dev mailing list
> >> Rivendell-dev@lists.rivendellaudio.org
> >> http://lists.rivendellaudio.org/mailman/listinfo/rivendell-dev
> ___
> Rivendell-dev mailing list
> Rivendell-dev@lists.rivendellaudio.org
> http://lists.rivendellaudio.org/mailman/listinfo/rivendell-dev
  ___
Rivendell-dev mailing list
Rivendell-dev@lists.rivendellaudio.org
http://lists.rivendellaudio.org/mailman/listinfo/rivendell-dev


Re: [RDD] HELP???

2012-02-19 Thread Patrick Schmalstig / WRRJ Radio
...I found a guide on installing on 10.04... actually two of them...
so that'll help me out if you wish for me to install it for you.

On Sun, Feb 19, 2012 at 5:30 PM, Patrick Schmalstig / WRRJ Radio
 wrote:
> ...if you would like me to... if you want Rivendell 2 it's pretty
> complicated so that'd probably be best. However... I cannot promise I
> can get it working on 10.04LTS because it's been a while since I used
> 10.04 (and I never used version 2 on 10.04). But I can try.
>
> On Sun, Feb 19, 2012 at 5:26 PM, Troy Welch  wrote:
>> I could also do a direct connect remote assistance if you could assist that 
>> way as well.
>>
>> Or thru chat?
>>
>> Sent from my iPhone
>>
>> On Feb 19, 2012, at 5:24 PM, Troy Welch  wrote:
>>
>>> 10.04 lts
>>>
>>> Sent from my iPhone
>>>
>>> On Feb 19, 2012, at 5:03 PM, "Patrick Schmalstig / WRRJ Radio" 
>>>  wrote:
>>>
 I can try... what version of Ubuntu?

 On Sun, Feb 19, 2012 at 4:21 PM, Troy `Welch  wrote:
> Anyone willing to assist with installing Rivendell on Ubuntu?
>
> I am very new to this and have no idea how to install the software.
>
> Willing to allow someone to connect to the machine if need be.
>
> Anyone?
>
> Troy
>
> ___
> Rivendell-dev mailing list
> Rivendell-dev@lists.rivendellaudio.org
> http://lists.rivendellaudio.org/mailman/listinfo/rivendell-dev
>
 ___
 Rivendell-dev mailing list
 Rivendell-dev@lists.rivendellaudio.org
 http://lists.rivendellaudio.org/mailman/listinfo/rivendell-dev

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


  1   2   >