Re: [RDD] Network clilent audio playback problem

2018-06-13 Thread Geoff Barkman
Hi David
You've to MySQL ok. That's good.
Where is the audio files sitting that you are trying to play?
If they are only on the server, you need to be able to connect to them.
Usually nfs is a good way. Samba does sometimes work, but not recommended.
The files have to be mounted so the client can play them.
Many thanks
Geoff barkman

On Jun 13, 2018 7:32 AM, "Lorne Tyndale"  wrote:

A few things to look at:

-For the client, make sure it has a static IP, and be sure you have
added the client in rdadmin --> Hosts

-If you are running a standard onboard (or otherwise) sound card - using
ALSA - have you set up the card in /etc/asound.conf  on the client?  You
can use rdalsaconfig for this

-Check RDAdmin --> Manage hosts --> (click on host) --> Audio adapters.
Are there any items listed under Audio Adapters?

-If you are trying to use an on-board sound card (and some inexpensive
sound cards that are not onboard also require this) you *might* need to
add your sample rate (the sample rate that Rivendell uses in rdadmin -->
System Settings) into your /etc/asound.conf - here's an example from one
of my systems:

/etc/asound.conf

# *** Start of Rivendell configuration generated by rdalsaconfig(1) ***
pcm.rd0 {
  type hw
  card 0
  device 0
rate 48000
}
ctl.rd0 {
  type hw
  card 0
}

# *** End of Rivendell configuration generated by rdalsaconfig(1) ***

Make the above addition for each of your pcm entries in /etc/asound.conf
(you will need to be root to edit this file), save your file and restart
your daemons or reboot.  Check in rdadmin --> Manage Hosts --> Audio
Adapters and see if your sound card shows up.

While in rdadmin --> Manage Hosts check each module (rdairplay,
rdlibrary, etc) and make sure your card and port is selected for the
outputs and inputs

Hopefully one of those will point you in the right direction.

Lorne Tyndale


>
>
> I've been following this thread online
>
> http://caspian.paravelsystems.com/pipermail/rivendell-dev/
2016-July/024729.html
>
> but I'm having trouble getting the client machine to actually play any
audio.
>
> Everything else works fine, it can access the mysql server and can get
into rdadmin but no audio plays. Neither does the level meter move. If I
try to play an item in rdairplay it just disappears when the start button
is pushed. In rdlibrary the play button illuminates in the audio editor and
I can see all the cue points etc  but that's as far as it goes. The server
plays audio no problem
>
> Anyone got any ideas?
>
>
>
___
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] RD on Latest Ubuntu 18.04

2018-06-13 Thread Hoggins!
Hey,

If you have issues with the pow10() function, you can have a look at
this issue : https://github.com/ElvishArtisan/rivendell/issues/210
Basically, before compiling, by replacing pow10() with pow() in
cae/cae_jack.cpp and cae/cae_alsa.cpp like this :

from :
(jack_default_audio_sample_t)pow10((double)level/2000.0);

to :
(jack_default_audio_sample_t)pow(10.0,(double)level/2000.0);

That should do the trick !

    Hoggins!

Le 13/06/2018 à 19:34, Chuck a écrit :
>   I know I have championed the CentOS 7 appliance, but we have a
> situation where it is desirable (more than desirable, actually) to
> install it on a machine running the latest Ubuntu LTS.  Wayne Merrick's
> excellent guide for 16.04 does not work with the newest 18.04 LTS
> release.  It stops compiling (with a dozen or more red entries also
> flying through) dead at a "pow" entry error and will not go further.
>
>   Has anybody successfully installed on Ubuntu 18.04? and how did you do
> it?
>
>   Thanks!
>
> --Chuck W.
>
> ___
> Rivendell-dev mailing list
> Rivendell-dev@lists.rivendellaudio.org
> http://caspian.paravelsystems.com/mailman/listinfo/rivendell-dev
>




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


[RDD] RD on Latest Ubuntu 18.04

2018-06-13 Thread Chuck
  I know I have championed the CentOS 7 appliance, but we have a
situation where it is desirable (more than desirable, actually) to
install it on a machine running the latest Ubuntu LTS.  Wayne Merrick's
excellent guide for 16.04 does not work with the newest 18.04 LTS
release.  It stops compiling (with a dozen or more red entries also
flying through) dead at a "pow" entry error and will not go further.

  Has anybody successfully installed on Ubuntu 18.04? and how did you do
it?

  Thanks!

--Chuck W.

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


Re: [RDD] importing song data into Natural Music

2018-06-13 Thread Rob Landry


I would call Natural Software and get the exact format NM is expecting.

Then, I'd do a MySQL query on the Rivendell CART table to extract the data 
fields I need and use vi to massage the output into the format NM wants.



Rob

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

On Wed, 13 Jun 2018, Warren Mead wrote:


There seem to be a few Natural Music software users on the list, so perhaps
you can help?

Been using Rivendell and Natural Log for quite a few years, now we have
purchased Natural Music.
I'm trying to work out how to import music data into NM5, to reduce manual
data entry.

RDLibrary gives me the option to generate 4 kinds of report.  Cart Report,
Cut Report, Cart Data Dump, Cart Data Dump (csv).  Which one should I use?

I have tried using Cart Data Dump with the NM5 filter Text File
Pipe-Delimited.  It works for the first song on the list, but when I press
"next song" I get the error message  End of file has been reached. 

So how do you Natural Music experts do it?


Thanks


Warren Mead
Gold MX

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


[RDD] importing song data into Natural Music

2018-06-13 Thread Warren Mead
There seem to be a few Natural Music software users on the list, so 
perhaps you can help?


Been using Rivendell and Natural Log for quite a few years, now we have 
purchased Natural Music.
I'm trying to work out how to import music data into NM5, to reduce 
manual data entry.


RDLibrary gives me the option to generate 4 kinds of report.  Cart 
Report, Cut Report, Cart Data Dump, Cart Data Dump (csv).  Which one 
should I use?


I have tried using Cart Data Dump with the NM5 filter Text File 
Pipe-Delimited.  It works for the first song on the list, but when I 
press "next song" I get the error message /End of file has been reached./


So how do you Natural Music experts do it?


Thanks


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