Sponsored Content
Operating Systems OS X (Apple) An Audio Function Generator... Post 302970036 by wisecracker on Thursday 31st of March 2016 03:39:11 PM
Old 03-31-2016
Hi Scrutinizer...

Thanks that is what I needed...

I hadn't researched that yet as it was unimportant at this point in time... :-)
 

8 More Discussions You Might Find Interesting

1. Programming

Python, Platform Independent, Pure Audio Sinewave Generator...

IKHz_SW_OSX.py A DEMO mono _pure_ sinewave generator using standard text mode Python 2.6.7 to at least 2.7.3. This code is EASILY modifyable to Python version 3.x.x... This DEMO kids level 1KHz generator is mainly for a MacBook Pro, (13 inch in my case), OSX 10.7.5 and above. See below...... (0 Replies)
Discussion started by: wisecracker
0 Replies

2. Shell Programming and Scripting

A Crude 1KHz Audio Sinewave Generator Demo...

A very simple crude sinewave generator. The file required is generated inside the code, is linear interpolated and requires /dev/audio to work. Ensure you have this device, if not the download oss-compat from your OS's repository... It lasts for about 8 seconds before exiting and saves a... (5 Replies)
Discussion started by: wisecracker
5 Replies

3. Shell Programming and Scripting

Sequence generator

Thanks Guys This really helped (5 Replies)
Discussion started by: robert89
5 Replies

4. Slackware

Problems with audio recording in Audacity 2.0.5. Slackware64 14.1; Intel HD Audio.

I'm trying to record audio using Audacity 2.0.5 installed from SlackBuilds. My system is 64-bit Slackware 14.1 and a sound card is Intel HD Audio. I didn't change my sound system to OSS. (Default sound system in Slackware 14.1 is ALSA, isn't it?) First, I set Internal Microphone slider in KMix... (2 Replies)
Discussion started by: qzxcvbnm
2 Replies

5. OS X (Apple)

A Bash Audio Sweep Generator...

This is a small program as a tester for a basic sweep generator for bandwidth testing of AudioScope.sh. This DEMO is only capable of 4KHz down to about 85Hz and back due to the low bit rate, but it is proof of concept for a much wider variant using a much higher bit rate. The file generated... (4 Replies)
Discussion started by: wisecracker
4 Replies

6. OS X (Apple)

Variable frequency audio generator...

Hi all... I intend to do an Audio Function Generator using Awk, (already started thanks to Don), but the biggest thing I have struggled with was variable frequency. I was going to generate differing sized waveforms on the fly but that would that would mean the frequencies are dependent on any... (2 Replies)
Discussion started by: wisecracker
2 Replies

7. OS X (Apple)

A simple variable frequency sinewave audio generator.

Hi all... Well I have not been inactive but working out how to make OSX 10.14.x command line audio player have a variable sample rate. This is a back door as afplay does not have a sample rate flag unlike aplay for ALSA, in Linux flavours. This is a DEMO only but a derivative of it will... (2 Replies)
Discussion started by: wisecracker
2 Replies

8. Shell Programming and Scripting

Hostsfile generator

Hello I use a bash script to creating the hosts file /etc/hosts But there is a bug inside my output and I want to fix this. My Array looks like this: 205,IP 111.122.133.20 205,HOST2 unas 205,HOST1 unas15533 205,COMMENT # UNAS 775,IP ... (9 Replies)
Discussion started by: Marti95
9 Replies
RDF::Generator::Void(3pm)				User Contributed Perl Documentation				 RDF::Generator::Void(3pm)

NAME
RDF::Generator::Void - Generate VoID descriptions based on data in an RDF model VERSION
Version 0.04 Note that this is a beta release. It has the core functionality in place to create a basic VoID description and what's there should be working well. Nevertheless significant changes in this module may be coming up really soon. SYNOPSIS
use RDF::Generator::Void; use RDF::Trine::Model; my $mymodel = RDF::Trine::Model->temporary_model; [add some data to $mymodel here] my $generator = RDF::Generator::Void->new(inmodel => $mymodel); $generator->urispace('http://example.org'); $generator->add_endpoints('http://example.org/sparql'); my $voidmodel = $generator->generate; DESCRIPTION
This module takes a RDF::Trine::Model object as input to the constructor, and based on the data in that model as well as data supplied by the user, it creates a new model with a VoID description of the data in the model. For a description of VoID, see <http://www.w3.org/TR/void/>. METHODS
new(inmodel => $mymodel, dataset_uri => URI->new($dataset_uri)); The constructor. It can be called with two parameters, namely, "inmodel" which is a model we want to describe and "dataset_uri", which is the URI we want to use for the description. Users should make sure it is possible to get this with HTTP. If this is not possible, you may leave this field empty so that a simple URN can be created for you as a default. "inmodel" Read-only accessor for the model used in description creation. "dataset_uri" Read-only accessor for the URI to the dataset. Property Attributes The below attributes concern some essential properties in the VoID vocabulary. They are mostly arrays, and can be manipulated using array methods. Methods starting with "all_" will return an array of unique values. Methods starting with "add_" takes a list of values to add, and those starting with "has_no_" return a boolean value, false if the array is empty. "vocabulary", "all_vocabularies", "add_vocabularies", "has_no_vocabularies" Methods to manipulate a list of vocabularies used in the dataset. The values should be a string that represents the URI of a vocabulary. "endpoint", "all_endpoints", "add_endpoints", "has_no_endpoints" Methods to manipulate a list of SPARQL endpoints that can be used to query the dataset. The values should be a string that represents the URI of a SPARQL endpoint. "title", "all_titles", "add_titles", "has_no_titles" Methods to manipulate the titles of the datasets. The values should be RDF::Trine::Node::Literal objects, and should be set with language. Typically, you would have a value per language. "license", "all_licenses", "add_licenses", "has_no_licenses" Methods to manipulate a list of licenses that regulates the use of the dataset. The values should be a string that represents the URI of a license. "urispace", "has_urispace" This method is used to set the URI prefix string that will match the entities in your dataset. The computation of the number of entities depends on this being set. "has_urispace" can be used to check if it is set. Running this stuff "stats", "clear_stats", "has_stats" Method to compute a statistical summary for the data in the dataset, such as the number of entities, predicates, etc. "clear_stats" will clear the statistics and "has_stats" will return true if exists. generate( [ $model ] ) Returns the VoID as an RDF::Trine::Model. You may pass a model with statements as argument to this method. This model may then contain arbitrary RDF that will be added to the RDF model. If you do not send a model, one will be created for you. AUTHORS
Kjetil Kjernsmo "<kjetilk@cpan.org>" Toby Inkster "<tobyink@cpan.org>" Tope Omitola, "<tope.omitola at googlemail.com>" TODO
o Allow arbitrary RDF to be added to the VoID. o Larger test dataset for more extensive tests. o URI regexps support. o Partitioning based on properties and classes. o Technical features (esp. serializations). o Example resources and root resources. o Data dumps. o Subject classification. o Method to disable heuristics. o More heuristics. o Linkset descriptions. o Set URI space on partitions. o Conditional updates based on model ETags. o Save the description to files? BUGS
Please report any bugs you find to https://github.com/kjetilk/RDF-Generator-Void/issues <https://github.com/kjetilk/RDF-Generator- Void/issues> SUPPORT
You can find documentation for this module with the perldoc command. perldoc RDF::Generator::Void The Perl and RDF community website is at <http://www.perlrdf.org/> where you can also find a mailing list to direct questions to. You can also look for information at: o AnnoCPAN: Annotated CPAN documentation http://annocpan.org/dist/RDF-Generator-Void <http://annocpan.org/dist/RDF-Generator-Void> o CPAN Ratings http://cpanratings.perl.org/d/RDF-Generator-Void <http://cpanratings.perl.org/d/RDF-Generator-Void> o MetaCPAN <https://metacpan.org/module/RDF::Generator::Void> ACKNOWLEDGEMENTS
LICENSE AND COPYRIGHT
Copyright 2012 Tope Omitola, Kjetil Kjernsmo, Toby Inkster. This program is free software; you can redistribute it and/or modify it under the terms of either: the GNU General Public License as published by the Free Software Foundation; or the Artistic License. See http://dev.perl.org/licenses/ for more information. perl v5.14.2 2012-06-29 RDF::Generator::Void(3pm)
All times are GMT -4. The time now is 12:16 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy