similar to: .mp3 and .ogg streamed both as .ogg

Displaying 20 results from an estimated 2000 matches similar to: ".mp3 and .ogg streamed both as .ogg"

2005 Mar 06
2
Ices0 v. 0.4 Skip Song
Hello all Ive just discover that ices0 can encode {.ogg,.flac,.mp3} to mp3 streams!.. greate! the script thing is wonderfull. in my script i have defined ices_init ices_shutdown ices_get_next all works greate. Now, i want be able users to skip the song that is been streamd. for that, kill -s SIGUSR1 IcesPid works greate but.. for the songs i have setup a ranking field in a sql database.
2017 Feb 21
1
movie player vs. mp3
On 02/21/2017 04:18 AM, Leon Fauster wrote: >> Am 21.02.2017 um 03:08 schrieb Alice Wonder <alice at domblogger.net>: >> >> On 02/20/2017 06:06 PM, Scott Robbins wrote: >>> On Mon, Feb 20, 2017 at 07:58:22PM -0600, Michael Hennebry wrote: >>> >>> >>>> I have movie player installed on centos 6. >>>> When I try to play an mp3
2017 Feb 21
2
movie player vs. mp3
On 02/20/2017 06:06 PM, Scott Robbins wrote: > On Mon, Feb 20, 2017 at 07:58:22PM -0600, Michael Hennebry wrote: > > >> I have movie player installed on centos 6. >> When I try to play an mp3 file, it complains about the lack of a codec, >> mpeg-1 something 3. >> google hasn't helped. What package do I need? >> Trying to install ffmpeg gets me a no such
2015 May 22
2
Command line mp3 player
On 05/22/2015 12:10 PM, Bowie Bailey wrote: > mplayer is pulling in 83 dependencies! I think I'll look for something > a bit more self-contained. I don't understand that reaction to packaging. mplayer uses a variety of libraries to support a large variety of media types. It doesn't include servers or SUID binaries, so it doesn't carry a significant security risk, and
2005 Aug 24
1
Running wine from php pages with "Xvfb" not success for my machine
I am sorry before, cause my english is poor. My machine is : i686 and I use RedHad Enterprise Linux AS Rel.3, Apache 1.3.33 and PHP 4.4.0. Simply, I want to run an Windows application via PHP page with WINE emulation. (Newest version of WINE updt. August 2005) I have a simple a PHP file "wine.php", that will load an windows application via PHP page. The contents is:
2013 Feb 02
2
Question: write an R script with help information available to the user
Dear All, I would like to ask a question on how to incorporate into an R script help information for the user. I vaguely recall that I saw some instructions on an R manual, but am not able to figure them out. Hereunder is the basic setting: 1. I finished writing an R script, my_script.r, that is a function (the function is named "my_func") for a statistical procedure. This means that
2006 Feb 23
5
mpg123 alternative?
Been using mpg123 for moh for the last two years or so. However, when I have * config errors, often times get a endless stream of console messages and need to kill the two mpg123 processes. Is there an alternative to mpg123 that eliminates that issue? I see references in musiconhold.conf relative to madplay, native file format, asterisk-addons, etc. Not sure why the asterisk-addon approach
2015 Mar 24
5
EZStream 0.5.6 Says No Such Share Object
On Fedora 20 (Heizenbug), when the command: /usr/local/bin/ezstream -q -c "{some-file}.xml" is executed, the error message: /usr/loca/bin/ezstream: error while loading shared library: libtag_c.so.0; cannot open shared object file: no such file or directory is displayed. "find" shows it's in /usr/lib64, which is a link to /usr/lib64/libtag_so.0.0.0. Is there something I
2015 Mar 25
1
EZStream 0.5.6 Says No Such Share Object
On Wed, Mar 25, 2015 at 09:43:20AM -0400, Steve Matzura wrote: > I ridded myself of the 32-bit and install the 64-bit version of > EZStream on Fedora 20 (Heizenbug). The RPM doesn't offer 0.6.0, but no > matter, I'm sorry, the previous ezstream RPM package maintainer did not registered the package for monitoring new releases, so Fedora still delivers older version. However I
2015 May 22
2
Command line mp3 player
------------ Original Message ------------ > Date: Friday, May 22, 2015 11:52:43 AM -0700 > From: Kirk Bocek <t004 at kbocek.com> > > On May 22, 2015 11:46:23 AM PDT, Bowie Bailey > <Bowie_Bailey at BUC.com> wrote: >> I have a CentOS 7 server that I want to use as an audio source >> for our hold music. It does not have a GUI installed, so I am >>
2005 Aug 25
0
Running wine from php pages with "Xvfb" not fix yet
Thanks for your reply before I tried your solution, but my problem not fix yet. Maybe I missundertand about: - What is startup script do you mean? Is it not ".bash_profile" that located on my home user folder (/home/takeda)? If I false, please show me the file and where the folder located. While I trying your solution, I embedded script "Xvfb :1 &" on my
2009 Oct 16
2
Urgent help requested to modify a script
I am hoping someone will tak up this chalenge (I am new to R) I have inheritied an R script but need to change it. The script currently includes hardcoded file locations on lines 12,166 and 167. I need to modify this script to allow the folder to be passed as a command line argument to Rscript.exe Can anybody help please? Regards, Ian http://www.nabble.com/file/p25924237/My_script.R
2012 Jun 27
1
Running R on a cluster
Hello, I have R script my_script.R . It loads a large input file "data.txt" and then outputs a large matrix "out". (the command of running it on cluster using my.cmd is put at the end) Now I have 30 different input files "data1.txt", "data2.txt" ... and "data30.txt" and want to generate and save 30 output (matrix) files separately, how can I
2004 Jul 13
1
Synatx Error on start with R --no-save < myfile.R
Dear all! I wrote my R-code with an editor and loaded it with source("my_file.R"). Everything works fine as expected. When I try to start my code with: R --no-save < my_file.R I do get a synatx error half way through. The version is 1.9.0 on a Linux system. To start it with R --no-save < my_file.R works on some machines but on some it doesn't. Are there any rules
2011 May 24
2
escape characters in shell commands
On a Windows platform I am trying to count the number of lines in a file. In a DOS window, the following works: C:\Users\jar>findstr /R /N "^" D:\my_dir\my_file | find /C ":" 5317 (it works with double \\ also) But in R, I need to make this string up with the file name I get from file.choose(): filename = file.choose() #get the number of lines in the file # first make a
2019 Dec 17
0
chainloading syslinux problem
On Tue, 2019-12-17 at 22:46 +0100, David Bala?ic via Syslinux wrote: > Hi! > I have bootable (USB flash) disk, that _appears_ to be using syslinux. > (the word syslinux is in the PBR, in the hexdump). > How can I chainload it? The payload seems to be a file that I tried > load with COMBOOT, COM32 etc, but nothing works (they report that the > file is not in proper format, wrong
2005 Oct 20
1
Problem with Excel Files and Acls
Hi, I've allready seen a lot of posts about problems with Excel 2000, but I couldn't find one exactly matching my case. I'm using a self (and maybe badly) compiled samba 3.0.20 on debian, using ACLs. We're using ADS and winbind (some older NT4 domains remain) The users can't open some excel files, spitting a message such as 'the file is readonly or you're trying
2013 Nov 26
4
how to deal with xml files within Puppet ?
hi there, I have to create a new server.xml which should be build from at least 3 or 4 another xml files. How could to copy and paste with puppet methods ? On a command line under Unix I would do cat 1.xml > my_file.xml ; cat 2.xml >> my_file.xml; cat 3.xml >> my_file.xml. I have to say, I''m pretty new to puppet and simply have no clue how to tackle this task ;=(
2013 Feb 04
1
Problem loading hdf5 file
*Hi everyone, I am a new subscriber, so I hope I'm posting in the right way. I need to load a hdf5 file, so I installed the hdf5 libraries ad the hdf5 R package; in downloaded a small sample file from the hdf5 website and I could correctly load it. But when I try to load my file: * require(hdf5) rm(list=ls()) ls() hdf5load("my_file.h5", verbosity=3) *I get this error message: *
2009 Jun 24
5
how to exec a directory creation before downloading a file to that directory?
I want to create a directory and THEN get files into that directory on a client. Puppet it seems does not follow the order of commands, like below in my example. Sometimes it creates the directory, then downloads the file, and sometimes it tries to download the file before creating the directory, so the file won''t be downloaded. How can I download a file and make certain the destination