Displaying 20 results from an estimated 195 matches for "fileout".
2017 Oct 18
3
OPUS vs MP3
Good morning.
I've ran a test against MP3 format.
Code: (first convert tested audio file to 16 bit 48khz with sox.exe if
needed)
lame.exe -b 320 48khzfilein.wav -o fileout.mp3
lame --decode fileout.mp3 -o fileout.mp3.wav
opusenc.exe --bitrate 320 48khzfilein.wav fileout.opus
opusdec.exe fileout.opus fileout.opus.wav
wavdiff.exe 48khzfilein.wav fileout.mp3.wav -diff fileout.mp3.delta.wav
wavdiff.exe 48khzfilein.wav fileout.opus.wav -diff fileout.opus.delta.wav
Result...
2012 Jan 16
1
[PATCH] generator: Add an explicit Cancellable flag
Currently any api which takes a FileIn or FileOut parameter is implicitly
cancellable. This change make cancellable an explicit flag in anticipation of it
being added to other apis.
---
generator/generator_actions.ml | 53 ++++++++++++++++++++++++++-------------
generator/generator_checks.ml | 3 +-
generator/generator_types.ml | 1 +...
2017 Oct 31
3
OPUS vs MP3
..., I think JPEG could do
better on my subwoofer.
Cheers,
Jean-Marc
On 10/18/2017 07:08 PM, encrupted anonymous wrote:
Good morning.
I've ran a test against MP3 format.
Code: (first convert tested audio file to 16 bit 48khz with sox.exe if
needed)
lame.exe -b 320 48khzfilein.wav -o fileout.mp3
lame --decode fileout.mp3 -o fileout.mp3.wav
opusenc.exe --bitrate 320 48khzfilein.wav fileout.opus
opusdec.exe fileout.opus fileout.opus.wav
wavdiff.exe 48khzfilein.wav fileout.mp3.wav -diff fileout.mp3.delta.wav
wavdiff.exe 48khzfilein.wav fileout.opus.wav -diff fileout.opus.delta.wav
Result...
2014 Feb 10
5
[PATCH 0/4] add GUID validation (RHBZ#1008417)
Hi,
this patch serie adds a new GUID type in the generator, which would do
the same as String, but also validating (just in the C output) the
passed GUID string.
This allows to reject invalid GUIDs before passing them to low-level
tools.
Pino Toscano (4):
utils: add a function to validate a GUID string
generator: add a GUID parameter type
generator: generate code for parameter validation
2009 Apr 28
0
File association in wine
...xtension is associated to a "kdestart.exe" script that you can put somewhere in the PATH and customize as you like (and maybe make it freedesktop.org compliant [Wink] )
Here's the script (copy and paste in a file, make it executable and run it)
WINEPREFIX=${WINEPREFIX:-$HOME/.wine}
FILEOUT=extension.reg
echo REGEDIT4 > $FILEOUT
echo >> $FILEOUT
for ext in `cat $HOME/.local/share/mime/globs /usr/share/mime/globs | grep "*."|cut -f 2 -d :|sort --unique -f | cut -f 2 -d "*"`; do
ext2=`echo $ext|cut -f 2- -d .`
esiste=`grep -i '\\[Software\\\\\\\...
2017 Oct 30
0
OPUS vs MP3
...tter on my subwoofer.
Cheers,
Jean-Marc
On 10/18/2017 07:08 PM, encrupted anonymous wrote:
> Good morning.
>
> I've ran a test against MP3 format.
>
> Code: (first convert tested audio file to 16 bit 48khz with sox.exe if
> needed)
> lame.exe -b 320 48khzfilein.wav -o fileout.mp3
> lame --decode fileout.mp3 -o fileout.mp3.wav
> opusenc.exe --bitrate 320 48khzfilein.wav fileout.opus
> opusdec.exe fileout.opus fileout.opus.wav
> wavdiff.exe 48khzfilein.wav fileout.mp3.wav -diff fileout.mp3.delta.wav
> wavdiff.exe 48khzfilein.wav fileout.opus.wav -diff fileo...
2017 Oct 31
0
OPUS vs MP3
...017 07:08 PM, encrupted anonymous wrote:
>>> Good morning.
>>>
>>> I've ran a test against MP3 format.
>>>
>>> Code: (first convert tested audio file to 16 bit 48khz with sox.exe if
>>> needed)
>>> lame.exe -b 320 48khzfilein.wav -o fileout.mp3
>>> lame --decode fileout.mp3 -o fileout.mp3.wav
>>> opusenc.exe --bitrate 320 48khzfilein.wav fileout.opus
>>> opusdec.exe fileout.opus fileout.opus.wav
>>> wavdiff.exe 48khzfilein.wav fileout.mp3.wav -diff fileout.mp3.delta.wav
>>> wavdiff.exe 48kh...
2007 Apr 23
1
Bug in R 2.4.1 ?
...everybody,
I'm using hdf5 files to store results from intermediate calculations.
These are usually part of a list, called "res". As I want the hdf-files
to contain all the members of res in its top "directory", I used to do
attach(res)
do.call("hdf5save", args=c(fileout=file.path(dir, ofile),
as.list(names(res))))
detach(res)
which did what I wanted (R version 2.3.1 under ubuntu edgy). Since the
upgrade to ubuntu feisty fawn which ships with R 2.4.1, the code above
causes a crash:
*** caught segfault ***
address 0x11, cause 'memory not mapped'...
2013 Jan 24
3
[REVIEW ONLY] Mountable patches
These 3 patches implement support for APIs which must accept a mountable, but
don't update apis which must return mountables.
Matt
2008 Sep 14
4
Fetching a range of columns
...uld like to fetch all
columns from within a range ( 842-2411). In teh past, I have done this to
fetch just select few columns:
data <- read.csv(filein, header=TRUE, nrows=320, skip=nskip)
data_filter <- data[c(2,12,17)]
write.table(data_filter, fileout, append = TRUE,
sep= ",", row.names= FALSE, col.names = FALSE)
nskip <- nskip+320
This time, however, instead of grabbing columns 2, 12, 17, I woudl like all
columns in the range of 842-2411. I can't seem to do this correctly. Could
somebody please provide...
2017 Apr 21
4
[PATCH 0/2] generator: Simplify the handling of string parameters.
Very large but mechanical change to the generator.
Rich.
2017 Apr 21
0
[PATCH 1/2] generator: Simplify the handling of string parameters.
...ename" String (FileIn, "filename")
DeviceList "devices" StringList (Device, "devices")
Handling BufferIn is sufficiently different from a plain String
throughout all the bindings that it still uses a top-level type.
(Compare with FileIn/FileOut where the only difference is in the
protocol, but the bindings can uniformly treat it as a plain String.)
There is no semantic change, and the generated files are identical
except for a minor change in the (deprecated) Perl
%guestfs_introspection table.
---
generator/GObject.ml...
2013 Feb 07
12
[PATCH 01/12] generator: Add new Mountable argument type
...sts.ml
+++ b/generator/bindtests.ml
@@ -127,7 +127,7 @@ print_strings (guestfs_h *g, char *const *argv)
List.iter (
function
| Pathname n
- | Device n | Dev_or_Path n
+ | Device n | Mountable n | Dev_or_Path n
| String n
| FileIn n
| FileOut n
diff --git a/generator/c.ml b/generator/c.ml
index 518ac1b..afa81ed 100644
--- a/generator/c.ml
+++ b/generator/c.ml
@@ -121,7 +121,7 @@ let rec generate_prototype ?(extern = true) ?(static = false)
List.iter (
function
| Pathname n
- | Device n | Dev_or_Path n
+ | De...
2004 Apr 12
3
Decoding with 8 bit-samples
Hi!
I'd like to make a stereo 8-bit wav file
from a stereo (16 bit) ogg vorbis file
(in delphi, with the vorbisfile).
I use:
ret := ov_open_callbacks(filein,vf,nil,0,ops_callbacks);
if ret = 0 Then
begin
fileOut := TFileStream.Create(savedlg.FileName,fmCreate);
repeat
ret := ov_read(VF, pcmout, BufferSize, 0, 1, 1, nil); //'cause of the 8-bit
fileOut.Write(pcmout,ret);
until ret = 0;
end;
The result will be cracking.... etc (will be unrecognizable). Why?
If I decode i...
2011 Dec 17
1
odfWeave error
I am new to using odfWeave but I have encountered a problem running
both the example in the help file as well as another file.? I am not
sure how to correct the error.
First example:
library(odfWeave)
filein <- 'c:\\my documents\\example01_in.odt'
fileout <- 'c:\\my documents\\example01.odt'
odfWeave(filein, fileout, control = odfWeaveControl(cleanup = T))
error:
The system cannot find the path specified.
The system cannot find the drive specified.
Error: content.xml? does not seem to be XML, nor to identify a file name
log
>...
2011 Dec 16
1
odfWeave
I am new to using odfWeave but I have encountered a problem running both
the example in the help file as well as another file. I am not sure how to
correct the error.
First example:
library(odfWeave)
filein <- 'c:\\my documents\\example01_in.odt'
fileout <- 'c:\\my documents\\example01.odt'
odfWeave(filein, fileout, control = odfWeaveControl(cleanup = T))
error:
The system cannot find the path specified.
The system cannot find the drive specified.
Error: content.xml does not seem to be XML, nor to identify a file name
log
>...
2017 Oct 31
3
Antw: Re: OPUS vs MP3
...017 07:08 PM, encrupted anonymous wrote:
>>> Good morning.
>>>
>>> I've ran a test against MP3 format.
>>>
>>> Code: (first convert tested audio file to 16 bit 48khz with sox.exe if
>>> needed)
>>> lame.exe -b 320 48khzfilein.wav -o fileout.mp3
>>> lame --decode fileout.mp3 -o fileout.mp3.wav
>>> opusenc.exe --bitrate 320 48khzfilein.wav fileout.opus
>>> opusdec.exe fileout.opus fileout.opus.wav
>>> wavdiff.exe 48khzfilein.wav fileout.mp3.wav -diff fileout.mp3.delta.wav
>>> wavdiff.exe 48kh...
2015 May 26
2
[PATCH] api: Don't truncate /dev/stdout or /dev/stderr when used as FileOut.
In APIs such as guestfs_download, when the FileOut parameter exactly
matches "/dev/stdout" or "/dev/stderr", don't reopen the possibly
redirected output file with O_TRUNC (truncate). Instead dup the file
descriptor.
This magic behaviour doesn't happen for /dev/fd/* (or any other output
file) allowing callers the choice...
2016 Mar 07
1
Re: [PATCH 1/2] added icat and fls0 APIs
...xtend> folder.
> The filesystem from which to extract the file must be unmounted,
> otherwise the call will fail." };
>
> + { defaults with
> + name = "icat"; added = (1, 33, 14);
> + style = RErr, [Mountable "device"; Int64 "inode"; FileOut "filename"], [];
> + proc_nr = Some 464;
> + optional = Some "icat";
> + progress = true; cancellable = true;
> + shortdesc = "download a file to the local machine given its inode";
> + longdesc = "\
> +Download a file given its in...
2009 Aug 17
13
total warning-removal for daemon/
The warnings in daemon were aggravating and risky
for development (too easy to miss new ones) so I spent some
time last week and today working on removing them.
The first patch gets us down to almost no warnings with
the original -Wall setting. That was by far the hardest part.
Once I'd done that, I enabled nearly all of gcc's warnings via
gnulib's warnings and manywarnings modules