search for: file_format

Displaying 19 results from an estimated 19 matches for "file_format".

2008 Mar 29
1
Bug?
Hi, This might be related to the bug reported earlier about parsing URLs with parens, but the following looks like a bug to me: [ZIP archives](http://en.wikipedia.org/wiki/ZIP_(file_format) "ZIP (file format) - Wikipedia, the free encyclopedia") gets rendered by Markdown 1.01 as: <p><a href="http://en.wikipedia.org/wiki/ZIP_(file_format">ZIP archives</a> "ZIP (file format) - Wikipedia, the free encyclopedia")</p> Shouldn...
2011 Feb 02
1
Roo gem performance problems
I am getting unacceptable performace problems by using the roo gem for reading a file by using XLSX or XLS library from this gem. Someone may suggest me an alternative about how to parse an .XLSX file? <code> parsed_file = Excel.new(filename,false, :ignore) if (file_format.upcase == "XLS") parsed_file = Excelx.new(filename,false, :ignore) if (file_format.upcase == "XLSX") raise t "#{filename} is not an Excel file!" if (!parsed_file) parsed_file.default_sheet = parsed_file.sheets[0]#''Sheet2''#oo.sheets[...
2003 Dec 02
7
Meetme Recording
Hi, Can anybody explain me in configuring Asterisk to record a conference? Regards... Girish _________________________________________________________________ Add zing to Hotmail. Get FREE newsletters. http://server1.msn.co.in/features/general/Newsletters/index.asp Subscribe now!
2011 May 13
1
Asterisk 1.6: Custom Name for Recordings file
Hi, I have latest Elastix 64 bit setup and running fine (Asterisk 1.6.2.13) I would like to customize the file name of call recordings: /var/spool/asterisk/monitor/20110511-110858-1305126538.912.wav I would like to include the extension number in the file name. Did a lot of googling but not much help. Pls advice. Thx Sans -------------- next part -------------- An HTML attachment was
2015 Jul 12
2
Customized M3u for Icecast. Are there additional switches on XML / M3u Ezstream to override MetaData Tags in Mp3 with alternate tags
Hello. I have been streaming IceCast for about three years now and have run into a problem, which I hope this forum can resolve We stream non copyright songs from independent musicians. When they upload their music to our site, they upload Mp3's of which some have entered the MetaData information in the MP3. Problem, musicians dont always do this, leaving the meta data very sparse.... When
2016 May 04
2
Re: [libvirt] Creating a storage volume for raw format file
...*{'name': name, 'capacity': qmeu_info.virtual_size, 'allocation': qmeu_info.disk_size, 'src_path': src, 'format': qmeu_info.file_format, 'mode': oct(stat.st_mode)[-3:], 'uid': stat.st_uid, 'gid': stat.st_gid}) vol_xml = create_vol_xml(vol_name, src_path) self._vols[vol_name] = self._pool.c...
2010 Oct 21
1
Multiplexing
Good evening, I've just read the theora specs and I was wondering how theora bitstream is multiplexed with speex or vorbis audio in the ogg container. I'm looking for a reading (tutorial or specs) about ogg multiplexing. Manuel. -------------- next part -------------- An HTML attachment was scrubbed... URL:
2010 Dec 01
5
Wine icons for Windows applications
Hi, The latest version of Wine on a Ubuntu/Gnome system automatically creates the correct icons when shortcuts are placed in the desktop or "virtual start menu". However, it seems that the largest icon created is 48x48. Can this size be increased as these icons look fuzzy when using applications like Docky with zoom enabled? (or does this need to be changed somewhere else rather than
2016 May 04
0
Re: [libvirt] Creating a storage volume for raw format file
...: name, > 'capacity': qmeu_info.virtual_size, > 'allocation': qmeu_info.disk_size, > 'src_path': src, > 'format': qmeu_info.file_format, > 'mode': oct(stat.st_mode)[-3:], > 'uid': stat.st_uid, > 'gid': stat.st_gid}) > > vol_xml = create_vol_xml(vol_name, src_path) > self._vols...
2018 Feb 15
3
[PATCH v2 0/2] inspect: basic UTF-8 encoding for rpm
This needs Richard's patch: https://www.redhat.com/archives/libguestfs/2018-February/msg00099.html Diff to v1: * factorized the UTF-8 conversion functions * small style fixes Cédric Bosdonnat (2): common: extract UTF-8 conversion function inspector: rpm summary and description may not be utf-8 common/utils/guestfs-utils.h | 1 + common/utils/libxml2-utils.c
2012 Jul 19
2
[PATCH] pygrub: add syslog support to pygrub
...): s = ("kernel %s" % kernel) + sep if ramdisk: @@ -693,9 +695,19 @@ def format_simple(kernel, ramdisk, args, s += sep return s +def init_log(): + logger = logging.getLogger() + handler = logging.handlers.SysLogHandler(address=''/dev/log'') + file_format = (''[%(asctime)s %(process)d] %(levelname)s '' + ''(%(module)s:%(lineno)d) %(message)s'') + handler.setFormatter(logging.Formatter(file_format)) + logger.addHandler(handler) + logger.setLevel(logging.DEBUG) + if __name__ == "__main__...
2016 May 04
2
[libvirt] Creating a storage volume for raw format file
Hi I'm trying to create a volume in an existing storage pool using python by calling createXML() on the pool object. If the file that is the subject of the new volume exists you get and error, also if it doesn't exist I worked out that specifying <source> <path>path to copy of file</path> </source> works, seemingly by copying the 'source' file to
2018 Feb 15
0
[PATCH v2 2/2] inspector: rpm summary and description may not be utf-8
.../* This function parses the RPM header structure to pull out various * tag strings (version, release, arch, etc.). For more detail on the * header format, see: - * http://www.rpm.org/max-rpm/s1-rpm-file-format-rpm-file-format.html#S2-RPM-FILE-FORMAT-HEADER + * http://rpm.org/devel_doc/file_format.html#24-header-format */ /* The minimum header size that makes sense here is 24 bytes. Four @@ -301,6 +303,20 @@ struct read_package_data { struct guestfs_application2_list *apps; }; +static char * +to_utf8 (guestfs_h *g, char *input) +{ + char *out = NULL; + + out = guestfs_int_s...
2018 Feb 28
0
[PATCH v3 2/2] inspector: rpm summary and description may not be utf-8
.../* This function parses the RPM header structure to pull out various * tag strings (version, release, arch, etc.). For more detail on the * header format, see: - * http://www.rpm.org/max-rpm/s1-rpm-file-format-rpm-file-format.html#S2-RPM-FILE-FORMAT-HEADER + * http://rpm.org/devel_doc/file_format.html#24-header-format */ /* The minimum header size that makes sense here is 24 bytes. Four @@ -301,6 +303,20 @@ struct read_package_data { struct guestfs_application2_list *apps; }; +static char * +to_utf8 (guestfs_h *g, char *input) +{ + char *out = NULL; + + out = guestfs_int_s...
2011 Nov 09
2
R: RE: R: Re: Dos/Unix newline translating
on Debian I'm using VIM 7.2.445 on RedHat I'm using VIM 6.3.82 I verified in both systems with this command : vi -v ----Messaggio originale---- Da: robert.grasso at cedrat.com Data: 9-nov-2011 12.04 A: <ric.castellani at alice.it>, <jdmls at yahoo.com>, <samba at lists.samba.org> Ogg: RE: [Samba] R: Re: Dos/Unix newline translating on Debian it is possible that
2003 Aug 25
11
Why doesnt anyone reply me ?
I have posted soo many times in the past but never recieved even a single reply . seem like you people are ignoring me or either way too busy .. never mind this is my last try . How can record a conversation with asterisk ? I tried to use Record() but dint work for me .. here is what i tried . exten => s,1,Wait,1 ; Wait a second, just for fun exten => s,2,Answer
2018 Feb 14
1
[PATCH] inspector: rpm summary and description may not be utf-8
.../* This function parses the RPM header structure to pull out various * tag strings (version, release, arch, etc.). For more detail on the * header format, see: - * http://www.rpm.org/max-rpm/s1-rpm-file-format-rpm-file-format.html#S2-RPM-FILE-FORMAT-HEADER + * http://rpm.org/devel_doc/file_format.html#24-header-format */ /* The minimum header size that makes sense here is 24 bytes. Four @@ -301,6 +302,66 @@ struct read_package_data { struct guestfs_application2_list *apps; }; +static char * +to_utf8 (guestfs_h *g, char *input) +{ + iconv_t cd_utf8_utf8 = (iconv_t)(-1); + i...
2018 Feb 28
2
[PATCH v3 0/2] inspect: basic UTF-8 encoding for rpm
Diff to v2: * inlined local_string_to_utf8 Cédric Bosdonnat (2): common: extract UTF-8 conversion function inspector: rpm summary and description may not be utf-8 common/utils/guestfs-utils.h | 11 +++++ common/utils/libxml2-utils.c | 69 +-------------------------- common/utils/utils.c | 64 +++++++++++++++++++++++++
2012 May 10
12
[Bug 49727] New: wine 1.5.2 and 3Dmark2001se displays only black screen with FPS, on nv43/AGP
https://bugs.freedesktop.org/show_bug.cgi?id=49727 Bug #: 49727 Summary: wine 1.5.2 and 3Dmark2001se displays only black screen with FPS, on nv43/AGP Classification: Unclassified Product: Mesa Version: git Platform: x86 (IA32) OS/Version: Linux (All) Status: NEW Severity: normal