1 Star 0 Fork 2

wftdly001/sph2pipe

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
贡献代码
同步代码
取消
提示: 由于 Git 不支持空文件夾,创建文件夹后会生成空的 .keep 文件
Loading...
README
GPL-2.0
README File for "sph2pipe"
--------------------------

1. Introduction

The "sph2pipe" program was created by the Linguistic Data Consortium
to provide greater flexibility and ease of use for SPHERE-formatted
digital audio data.  It is equivalent in most respects to the related
utility "sph_convert", but each of these tools provides some abilities
that the other does not.  Here is a brief summary of the similarities
and differences.

Both sph_convert and sph2pipe will:

 - work on all Microsoft Windows systems, via the "MS-DOS" command
   line prompt
 - read any SPHERE-formatted data file and convert it to Microsoft
   RIFF ("WAV") format, Sun/Java AU format, MAC AIFF format or raw
   (headerless) format
 - automatically uncompress SPHERE files that have been compressed
   using the "shorten" algorithm (often used in LDC speech corpora)
 - allow demultiplexing of two-channel waveform data, to output one
   or the other channel alone
 - allow conversion of the sample data to 16-bit linear PCM or to
   8-bit mu-law encoding, regardless of the input sample encoding

Only sph_convert can:

 - run on older (pre-OSX) Macintosh systems, via the old Mac-style GUI
 - do multiple file conversions in a single run (sph2pipe only does
   one file at a time); there are two methods for doing "batches":
      * treat all files in a chosen directory that match a
        user-specified file-name pattern, or 
      * treat all files in all subdirectories under a chosen
        base directory 
 - in either case, convert all SPHERE files and copy (or bypass) all
   non-SPHERE files 

Only sph2pipe can:

 - run on UNIX systems (should also work on MacOS X, via its unix
   shell/command-line interface, using the "Terminal" utility)
 - provide SPHERE-formatted output as well as RIFF, AU, AIFF and raw
 - handle raw sample data as input, using a SPHERE header stored in a
   separate file.
 - trim off the beginning and/or end of the input data, to output just
   a user-specified segment based on either time or sample offsets
   (sph_convert always outputs the entire file)
 - write the output data to stdout, for redirection to any named file,
   or to a pipeline process (sph_convert always writes the data to a
   new file, with a name derived automatically from the input file)
 - support input and output of A-law speech data

When installed on MS Windows or MacOS, these tools will produce RIFF
output files by default; when compiled for UNIX systems (Linux, Solaris,
etc), sph2pipe will output SPHERE format by default.  In any case, the
user has the option to specify what format is desired -- any machine can
be used to generate any kind of output.  (Well, a Mac that is running
OS-9 or older cannot produce SPHERE output, but we haven't heard any
requests for that...)

Sph2pipe will not work on older Mac systems because the notion of a
pipeline command did not exist on Macs prior to OS X.  Of course, it is
possible to create custom-edited RIFF/AIFF/AU/raw files using sph2pipe
on unix or wintel, then copy those files to an older Mac; but the
combination of sph_convert and any of several waveform editing tools for
Macs can provide all the functionality of sph2pipe, and then some.

The "shorten" speech compression technique, used in the LDC's
publication of many speech corpora, was developed by Tony Robinson,
originally at Cambridge University; "shorten" is available from
SoftSound, Inc. (http://www.softsound.com/Shorten.html).  The algorithm
and source code for uncompressing "shortened" speech data are included
here by permission of Tony Robinson and SoftSound, Inc.

People who have used the original "shorten" package (dating from the
mid-1990's) will find that sph2pipe is more much flexible, because of
the range of options available for controlling output.  UNIX users who
are familiar with the NIST SPHERE utilities "w_decode" and "w_edit"
will find that sph2pipe runs faster and is easier to use, especially
when extracting a subset of data from a compressed file: in this case
sph2pipe alone handles a job that would require both w_decode and
w_edit, and works a lot quicker (and also avoids a nasty bug in the
sphere_2.6a package that can arise when you try to run w_decode and
w_edit together in a pipeline).

Note that sph2pipe and sph_convert are NOT able to do sample-rate
conversion.  If you have a need for this, try the "SoX" package -- see
under "Licensing" below for more information about SoX.


2. Installation

Wintel users can simply download the executable file (sph2pipe.exe) that
has been precompiled for MS Windows/DOS systems, and start using it.
(You can download the source files too, if you have your own C compiler
and want to customize the program for your needs.)  UNIX and MacOS X
users are advised to compile the program from the source code.

To build from sources, download "sph2pipe_v2.4.tgz", and do this:

 -- if you have the Gnu version of tar (standard on linux):

     tar xzf sph2pipe_v2.4.tgz

 -- otherwise (with Wintel systems or non-Gnu versions of tar):

     gzip -c -d sph2pipe_v2.4.tgz | tar xf -

 -- then:

     cd sph2pipe_v2.4

     gcc -o sph2pipe *.c -lm     ## on unix
 or
     gcc -o sph2pipe.exe *.c -lm ## on wintel, using the djgpp compiler

That's it -- no configuration scripts, makefiles or special libraries
are needed (the source code consists of just 3 *.c files, and 3 *.h
files; the standard math library is needed for compilation).  Put the
resulting "sph2pipe" executable in your path and start using it.  If you
don't have gcc, try whatever C compiler you do have; you might need to
change a few details in sph_convert.h, but we hope the code is generic
enough (POSIX compliant) to work anywhere.


3. Usage

The command line syntax is:

 sph2pipe [-h hdr] [-t|-s b:e] [-c 1|2] [-p|-u|-a] [-f typ] infile [outfile]

   -h hdr -- treat the input file as raw (headerless) sample data, and
         read header information from a separate file, given as the
         "hdr" argument; the "hdr" must contain a valid SPHERE header
         that correctly describes the nature of the input sample data
         ("hdr" may contain actual sample data as well, which will be
         ignored).  If the output format is "sph", the SPHERE header
         in "hdr" will be written first, with appropriate adjustments
         where needed.  (When this option is not used, "input" must
         begin with a valid SPHERE header.)

   -t b:e -- output only the portion of waveform data that lies
             between the stated beginning and ending points, given in
             seconds, as positive real numbers; "b" defaults to
             start-of-file, "e" defaults to end-of-file -- so the
             following usages are valid:

	     "-t :10.05"  (output first 10.05 sec, skip the rest)
	     "-t 4:"      (skip first 4 sec, output the rest)
	     "-t 4:10.05  (output 6.05 sec, starting at 4 sec in)

   -s b:e -- output only the portion of waveform data that lies
	     between the stated beginning and ending points, given in
	     samples as positive integers; "b" defaults to
	     start-of-file, "e" defaults to end-of-file -- so the
	     following usages are valid:

	     "-s :32000"    (output first 32K samples, skip the rest)
	     "-s 8000:"     (skip first 8K samples, output the rest)
	     "-s 8000:32000 (output 24K samples, starting at 8K in)

   -c 1 or -c 2 -- output only the first or second channel, in case
	           input is two-channel (has no effect if input is
	           single channel); default is to output all channels

   -p -- force 16-bit PCM output, in case input is something else (has
         no effect if input is already 16-bit PCM)

   -u -- force 8-bit mu-law output, in case input is 16-bit pcm (has
	 no effect if input is already mu-law)

   -a -- force 8-bit a-law output, in case input is 16-bit pcm (has
	 no effect if input is already a-law)

	 The -p, -u and -a options are ignored if "-f aif" is used,
	 because AIFF only supports PCM samples.  When none of these
	 three is specified, the default behavior is to leave original
	 sample format "as is" (or to force PCM if using "-f aif")

   -f fmt -- selects the output header format; "fmt" can be:
	 rif (or wav) -- default for Wintel & Mac systems
	 aif (or mac) -- similar to rif, but more Mac-ish...
	 sph -- SPHERE format, default on unix systems
	 au  -- common on Sun/Java/Next
	 raw -- i.e. headerless

If only one file name is given on the command line, output is written
to stdout (i.e. for redirection via "> output.file", or for input to a
pipeline).  If a second file name is given, output is written directly
to a file with this name, and not to stdout; if the named output file
already exists and contains data, its contents will be overwritten
(replaced) by the sph2pipe output.

If the output format is RIFF, AU, AIFF or SPH, a fully specified and
correct file header is written first (*).  When writing via stdout to
a pipeline, a downstream process can behave exactly as it would for a
valid disk file in the target format (except that "seek()" does not
work on stdin, of course).

(*) Note: for SPHERE-formatted output, sph2pipe will eliminate the
"sample_checksum" field, since this cannot be given a correct value
prior to processing and writing the output data.  Also, when
converting PCM input to mu-law or a-law, sph2pipe removes the
"sample_byte_format" header field, which defines the byte order for
16-bit sample data.  Apart from these two circumstances, the output
sphere header retains all information in the original input header,
along with appropriate changes, where necessary, to the sample_count,
channel_count, sample_coding, sample_n_bytes, sample_byte_format and
sample_sig_bits fields, making the header information consistent with
the data being written.

A useful benefit provided by pipeline operation is the ability to
"compose" a single output file by concatenating any number of input
files, or pieces of one or more input files.  For instance, to combine
all the speech data in one directory into a single file for signal
analysis (using bash as the command-line shell, which is available for
wintel systems as well as for unix):

   $ for i in *.sph; do
   > sph2pipe -f raw $i >> allsph.raw
   > done

Or, to put together a set of excerpts that you want to play back
during your next PowerPoint presentation:

   sph2pipe -f raw -t 0:1 empty.sph > silence.raw
   sph2pipe -f sph -t 0:1 empty.sph > slideshow.sph
   sph2pipe -f raw -t 15.5:18.2 example1.sph >> slideshow.sph
   cat silence.raw >> slideshow.sph
   sph2pipe -f raw -t 300:305.5 example2.sph >> slideshow.sph
   cat silence.raw >> slideshow.sph
   sph2pipe -f raw -t 1832:1838 example3.sph >> slideshow.sph
   cat silence.raw >> slideshow.sph
   ...
   sph2pipe -f wav slideshow.sph > slideshow.wav

Note the use of "raw" format to concatenate waveform data (we don't
want file headers to be interspersed with the speech).  Also, in the
second example, the sphere header that is initially created for
"slideshow.sph" will be "numerically" correct only in reference to the
initial one-second chunk; as more segments are appended to this file,
the "sample_count" field in the header will be further and further
from the truth.  But this doesn't matter -- at the final stage, when
this file is converted to RIFF, sph2pipe will notice the discrepancy
between the "sample_count" value in the header and the actual size of
the file, and will automatically correct the sample_count to be
consistent with the file size.

There are important rules to follow when combining segments from
multiple files.  If you happen to violate any of these rules, the
resulting output will certainly come out sounding wrong (sometimes
painfully so):

(1) be sure that all the input files have the same sampling rate.
(2) be sure to append data using a consistent number of channels,
       always a single channel, or always two channels
(3) it's a good idea to specify "-p" on all runs -- or "-u" or "-a" on
       all runs -- to guarantee that the output file will have the same
       sample coding throughout, no matter what the original sample
       codings may have been in the source files

When combining data from files in any single LDC corpus, these issues
normally won't pose any problem: within a given corpus, all files tend
to have the same properties.


4. Version specific information

This version will only convert one sphere file in one run, and must
read that file directly from disk or cdrom (it does not accept input
via stdin, because it must be able to do "fseek()" on the input file).
Handling bunches of files is easily done on both unix and wintel
systems using generic tools like the unix "bash" shell, the unix
"find" utility, and/or the Perl or Python scripting languages; fully
capable ports of all these tools are available for wintel systems.

 Version History:

 - Version 2.0 was the first "public" release; it did not support a-law
 sample coding, AU or AIFF output formats, the "-h hdrfile" option, or
 the "-s|-t bgn:end" options.  It contained a significant bug that arose
 when converting some 16-bit PCM sphere files to ulaw output.

 - Version 2.1 provided a fix for the pcm-to-ulaw bug.

 - Version 2.2 added the options for AU and AIFF output formats.

 - Version 2.3 added the "-s|-t" options to select regions for output
 based on sample or time offsets, and also added the "-h" option for
 using "stand-off" sphere headers with raw sample data files.

 - Version 2.4 added support for a-law sample coding, and added a
 thorough test suite, allowing end users to verify their installation;
 there were some minor bug fixes involving the "-h" option; the README
 file has also been revised to bring various URL's up to date.

 - Version 2.5 added the ability to include an output file name as a
 command line argument; this was done to avoid concerns on MS-Windows
 systems about some command-line shells that impose "text-mode"
 alterations to data when running commands with redirection or pipes.


5. License

Various portions of source code from Tony Robinson's "shorten-2.0"
package are used here by permission of Tony Robinson and SoftSound,
Inc. <http://www.softsound.com> -- these portions are found in the file
"shorten_x.c"; please note the copyright information in that file.  By
agreement with Tony Robinson and SoftSound, Inc, the Linguistic Data
Consortium (LDC) grants permission to copy and use this software for the
purpose of reading "shorten"-compressed speech data provided in NIST
SPHERE file format by the LDC or others.  SoftSound provides useful
tools for audio compression and other signal processing tasks.

Other portions of source code (in particular the "writeRIFFHeader" and
"writeAIFFHeader" functions in "file_headers.c", and the "alaw2pcm"
conversion function) were adapted from the "SoX" package, a valuable
open-source tool maintained primarily by Chris Bagwell, with assistance
from many others (http://sox.sourceforge.net/).  We gratefully
acknowledge the value provided by all contributors to SoX; sph2pipe
would have been much harder to write without this resource.  We
recommend that you use SoX if you need to do sample-rate conversion on
audio data.
GNU GENERAL PUBLIC LICENSE Version 2, June 1991 Copyright (C) 1989, 1991 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by the GNU Lesser General Public License instead.) You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things. To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it. For example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software. Also, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations. Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licenses, in effect making the program proprietary. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or not licensed at all. The precise terms and conditions for copying, distribution and modification follow. GNU GENERAL PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 0. This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term "modification".) Each licensee is addressed as "you". Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does. 1. You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program. You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. 2. You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: a) You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. b) You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License. c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.) These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program. In addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. 3. You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following: a) Accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, b) Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, c) Accompany it with the information you received as to the offer to distribute corresponding source code. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.) The source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. If distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code. 4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. 5. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it. 6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License. 7. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a patent license would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Program. If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances. It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. 8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. 9. The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this License, you may choose any version ever published by the Free Software Foundation. 10. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. NO WARRANTY 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. END OF TERMS AND CONDITIONS

简介

暂无描述 展开 收起
GPL-2.0
取消

发行版

暂无发行版

贡献者

全部

近期动态

加载更多
不能加载更多了
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/wftdly001/sph2pipe.git
git@gitee.com:wftdly001/sph2pipe.git
wftdly001
sph2pipe
sph2pipe
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385