search for: file_in

Displaying 11 results from an estimated 11 matches for "file_in".

Did you mean: file_id
2012 Jul 23
2
translating IDL to R
...ourly emissions ++++++ nlon=720 ; number of grid points by longitude nlat=360 ; number of grid points by latitude nhor=8 ; numbers of 3-hourly intervals each day gfeddly=fltarr(nlon,nlat) ; array containing daily emissions gfed3hly=fltarr(nlon,nlat,nhor) ; array containing 3-hourly emissions file_in = string('fraction_emissions_200401.nc') file_in=strcompress(file_in, /REMOVE_ALL) fid=NCDF_OPEN(file_in) varid=NCDF_VARID(fid,'Fraction_of_Emissions') NCDF_VARGET, fid, varid, DATA NCDF_CLOSE, fid for nh=0,nhor-1 do begin gfed3hly[*,*,nh]=gfeddly*DATA[*,*,nh] endfor ;+++++++++++...
2009 Apr 23
1
Convert file in GSM codec to G729 codec
Hi, I've tried the link http://www.asteriskguru.com/tools/audio_conversion.php but it returns an error at the moment. Any other ideas most welcome. Tx Shaun -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20090423/c491a7b9/attachment.htm
2010 Aug 28
4
Asterisk does not translate from wav to alaw
Hello list, I have a file to be played in wav-format. I thought Asterisk would automatically take the wav-file and translate it to the codec used, but I see this : [Aug 28 11:16:29] WARNING[2705]: file.c:664 ast_openstream_full: File /var/lib/asterisk/sounds/vprompts/*zip-code.wav* does not exist in any format [Aug 28 11:16:29] WARNING[2705]: file.c:991 ast_streamfile: Unable to open
2008 Oct 06
1
cdr,gsm file format
Hi 1. What is the best way to convert wav (44000 Khz) to gsm format for asterisk ? I;ve tried sox command but the outcome is not satisfying...The built-in gsm files shipped with asterisk are simply superb ..How do i create gsm files of similar quality ? Can anyone help me out ? if sox is the only way can anyone tell me the exact command ? 2. Can Freepbx 2.5 installed above asterisk 1.6.0 or
2016 Jun 04
3
for loop example
Hi list, Can you look in to this? [root at centos67 loop]# cat file1 firstname1 firstname2 [root at centos67 loop]# cat file2 lastname1 lastname2 I need a OUTPUT like this *firstname1 lastname1firstname2 lastname2* But I try the below command , i get below output. what is the real command to get the above output [root at centos67 loop]# for line1 in $(cat file1 ); do for line2 in $(cat
2004 May 20
7
New Qdisc - How to
Hello Lartc''s users, This is my first contact. I''m trying to implement a new queue discipline based on bfifo schedule. I search on internet but there are some problem(s) that I don''t Know how to solve them and that''s why I''m here asking for your help. Well, These were my steps for the implementation: - Put the new qdisc routine
2012 Jan 05
1
[ncdf] programmatically copying a netCDF file
How to programmatically (i.e., without no or minimal handcoding) copy a netCDF file? (Without calling > system("cp whatever wherever") :-) Why I ask: I need to "do surgery" on a large netCDF file (technically an I/O API file which uses netCDF). My group believes a data-assimilation error caused a data variable to be corrupted in a certain way, so I'm going to
2016 Sep 08
4
[PATCH 0/3] Use gnulib's getprogname
Hi, this series update libguestfs to a recent gnulib version, so that we can use its new getprogname module, and solve altogether one of the porting issues (the need for 'program_name' by the error module of gnulib), and have a single way to get the name of the current program. A number of changes in tools mostly, although mechanical. Thanks, Pino Toscano (3): Update gnulib to latest
2017 Apr 21
0
[PATCH 1/2] generator: Simplify the handling of string parameters.
...6,16 @@ let generate_fish_run_cmds actions () = pr " %s = argv[i];\n" name; pr " %s_size = strlen (argv[i]);\n" name; pr " i++;\n" - | FileIn name -> + | String (FileIn, name) -> pr " %s = file_in (argv[i++]);\n" name; pr " if (%s == NULL) goto out_%s;\n" name name - | FileOut name -> + | String (FileOut, name) -> pr " %s = file_out (argv[i++]);\n" name; pr " if (%s == NULL) goto out_%s;\n" name...
2017 Apr 21
4
[PATCH 0/2] generator: Simplify the handling of string parameters.
Very large but mechanical change to the generator. Rich.
2015 Feb 14
2
[PATCH 0/2] Change guestfs__*
libguestfs has used double and triple underscores in identifiers. These aren't valid for global names in C++. (http://stackoverflow.com/a/228797) These large but completely mechanical patches change the illegal identifiers to legal ones. Rich.