Preprint
Article

This version is not peer-reviewed.

Expressive Dizi Synthesis: Unlimited Synthetic Datasets, Real–Synthetic Integration and Technique Labeling

Submitted:

30 June 2026

Posted:

30 June 2026

You are already at the latest version

Abstract
The digitized models of Chinese traditional musical instruments have fallen behind those of Western musical instruments, therefore they have restricted the preservation work and the research acquiring. This article deals with score-to-audio generation for the Chinese bamboo flute (dizi), it produces expressive audio from MIDI scores which has human performance detail. The current existing methods have two obstacles that they face. First, the large-scale paired training data (MIDI-audio) for traditional Chinese musical instruments is not much. Second, the already existing systems are not able to control the techniques that are specific to instruments—vibrato, pitch bends, ornaments—which the standard MIDI has no ability to encode. We put forward a expandable working flow that produces infinite artificial MIDI-audio matching groups through rule-based music score random arrangement, automatic DAW drawing output by using business sample storage banks, and systemized character pick-up. The information of technique is directly coded in the MIDI stream through the use of note numbers that lie outside the normal range, which thus proves to be more effective than the method of external conditioning. This system is constructed on the basis of MIDI-DDSP. Pre-training makes use of large-scale man-made data to obtain timbre consistency; The fine adjustment carries out the use of actual recording materials (URMP flute corpus) to realize expressive dynamic changes. Only the synthetic data can generate output that is stable but has no life. The real data which exist alone can bring about the problem of overfitting. This combined result can give realistic tone, which has controllable dynamic changes and playing skills.
Keywords: 
;  ;  ;  ;  ;  

1. Introduction

The digital modeling of musical instruments has become a core focus within music information retrieval, computer-based music, and artificial intelligence-led creative systems. The musical instruments that come from Western countries, which include piano, violin and concert flute, possess quite mature technologies of synthesis and sampling that can support their use. The Chinese traditional musical instruments have not yet received sufficient research exploration.
Current production workflows typically rely on commercial sample libraries that require manual DAW editing, where key switches and continuous controllers approximate expressive effects. This method gets believable outcomes but needs large effort and special knowledge, therefore it limits traditional tone use in current media.
Musical sound synthesis remains a core concern in sound and vibration research, where modeling excitation mechanisms, resonant structures, and radiated acoustic responses continues to pose significant challenges. For wind instruments such as the dizi, sound production emerges from complex aeroacoustic interactions among airflow excitation, embouchure control, and the resonant air column. These interactions produce strongly nonlinear and time-varying vibration patterns, rendering generated sound highly sensitive to subtle performance variations. Both physically informed models and purely data-driven approaches face substantial difficulties in capturing expressive performance behaviors.
Recent advances in signal processing and machine learning have reshaped musical sound synthesis. High-capacity neural networks and modern neural audio-generation techniques now enable increasingly realistic waveform synthesis and timbral reconstruction. However, despite notable progress for Western orchestral and keyboard instruments, data-driven modeling of traditional wind instruments such as the dizi remains limited. This shortfall is closely linked to the intrinsic complexity of aeroacoustic excitation, nonlinear resonant phenomena, and the scarcity of high-quality paired symbolic-acoustic datasets.
Beyond static timbral reproduction, realistic synthesis must render expressive performance attributes, including articulation, dynamic shaping, pitch inflection, and noise-related components such as breath and turbulence. Acoustically, these expressive aspects manifest as transient energy redistribution, time-varying spectral-envelope modulation, and dynamic changes in the harmonic-to-noise ratio. Expressive synthesis cannot be reduced to static waveform rendering; rather, it should be formulated as a structured control problem over time-varying acoustic parameters that reflect performance intent.
Score-to-audio synthesis provides a promising avenue for expressive sound generation by explicitly linking symbolic musical descriptions to acoustic signal formation. Compared with sample-based playback or unconstrained generative audio models, score-driven synthesis offers structured and interpretable control that aligns naturally with compositional intent and performance instructions. However, the efficacy of score-to-audio systems depends heavily on the availability of paired symbolic-acoustic data and on the expressive richness of the symbolic representations themselves.
These limitations are especially acute for traditional and non-Western wind instruments, where standardized datasets and performance annotations are sparse and where many expressive techniques are transmitted via oral tradition rather than formal notation. Synthesis frameworks developed primarily for Western instruments cannot be transferred without careful adaptation. From the standpoint of sound and vibration modeling, this gap underscores the need for synthesis strategies that balance data efficiency, acoustic interpretability, and expressive controllability while accommodating instrument-specific performance practices.
Expressive performance synthesis can be interpreted as a mapping from symbolic control parameters to time-varying acoustic responses. Prior research indicates that purely data-driven models often struggle when expressive dimensions are weakly constrained or underrepresented in the symbolic domain. This issue is particularly pronounced for wind instruments, where articulation, breath control, and noise components introduce additional degrees of freedom not captured by standard symbolic encodings such as MIDI.
This work implements the proposed framework on a MIDI-DDSP backbone and employs real recordings for selective fine-tuning to transfer authentic expressive dynamics. Ornamentations are encoded as out-of-range MIDI tokens to provide technique-aware conditioning for the synthesis model.

3. Unlimited Synthetic Data Workflow

To overcome dataset scarcity for traditional Chinese instruments, we design a scalable workflow generating paired score–audio data. The pipeline consists of four sequential stages: (i) rule-based symbolic score generation, (ii) batch audio rendering, (iii) MIDI–audio feature extraction, and (iv) extended performance technique encoding. This pipeline combines reproducibility, extensibility, and expressive control for deep neural synthesis.
Figure 1. Synthetic Data Workflow.
Figure 1. Synthetic Data Workflow.
Preprints 220876 g001

3.1. Rule-Based Score Generation

The first stage constructs symbolic musical sequences emulating idiomatic dizi patterns. We use a rule-based algorithm generating unlimited symbolic sequences with configurable parameters: key, mode, pitch range, tempo. This enables scalable generation while maintaining musically meaningful constraints.
Rhythmic structures follow a fixed metric grid for temporal regularity and rendering stability. Note durations sample from a weighted distribution of common rhythmic values, promoting stylistic plausibility without excessive complexity. Pitch transitions stay within one octave, reflecting typical dizi practice and maintaining physical playability. Velocity values sample from a Gaussian distribution, providing controlled loudness fluctuations.
Operating symbolically enables high reusability and flexibility. Generation rules adapt easily to alternative scales, rhythmic profiles, or tempo distributions, facilitating systematic experimentation. Symbolic generation decouples musical structure from acoustic realization, allowing large-scale controllable dataset construction.

3.2. Batch Rendering of Audio

Generated symbolic scores render into audio waveforms using Reaper DAW with custom ReaScript automation. This ensures consistent, reproducible MIDI-to-audio conversion. Flexible virtual instrument or sample library substitution enables systematic investigation of data quality and timbral variation effects on model performance.
Training corpus fidelity matters. High-quality rendered audio preserves timbral characteristics and expressive detail. Low-quality or inconsistent sources introduce artifacts that hinder learning. The pipeline enforces controlled rendering: 48 kHz sampling, 24-bit resolution, monophonic output.
Automated rendering imports MIDI files in batch, assigns them to a predefined instrument track, initializes the virtual instrument plugin, and exports audio under identical settings. This enables large-scale homogeneous dataset generation while minimizing variability. Rendering identical scores with different virtual instruments allows controlled analysis of timbral fidelity and dataset composition effects.

3.3. Feature Extraction from MIDI-Audio Pairs

Each MIDI–audio pair processes into frame-level features for training performance-aware synthesis models like MIDI-DDSP. Audio signals downsample to 16 kHz mono, reducing computational cost while preserving perceptually relevant information. Signals segment into fixed-length frames with anti-alias filtering for spectral stability.
CREPE estimates fundamental frequency (f0) trajectories, capturing melodic and expressive pitch variations. Perceptual loudness and signal power (in decibels) represent dynamic characteristics. These features encode core acoustic dimensions: pitch, dynamics, temporal evolution.
MIDI events align to the same frame grid, yielding onset/offset indicators, active note indices, and time-varying velocity curves. Metadata (instrument identity, file identifiers) attaches to each instance. All features serialize into TFRecord format for compact storage and efficient training loading. This representation captures melodic contour, dynamic shaping, and structural timing while maintaining compatibility with scalable synthesis pipelines.

3.4. Encoding Extended Performance Techniques via Out-of-Range MIDI Mapping

Dizi expressivity relies on ornamentations (tonguing, vibrato) not captured by standard MIDI. We use out-of-range MIDI mapping: note numbers outside the natural range (G4–D7) represent extended techniques (Table 1).
This integrates with DAWs / plugins (remapping assigned notes to articulatory controls). It creates a digital notation paradigm encoding idiomatic techniques alongside pitch/rhythm—enabling automatic generation and human editing. It provides explicit supervision for training score-to-audio models, supporting fine-grained ornamentation control.
Extending symbolic representations to include performance-level control balances interpretability and modeling flexibility. Explicit technique encoding lets the synthesis model associate symbolic events with measurable acoustic phenomena: transient energy distribution, spectral noise components, pitch deviation patterns. This design fits hybrid neural-DSP architectures, where symbolic controls map to physically meaningful synthesis parameters.
Figure 2. Out-of-Range MIDI Mapping Techniques.
Figure 2. Out-of-Range MIDI Mapping Techniques.
Preprints 220876 g002

3.5. Summary of Workflow

Four stages establish a pipeline from symbolic abstraction to expressive audio rendering. The rule-based generator supplies unlimited symbolic material. Batch rendering ensures timbral fidelity. Feature extraction aligns symbolic and acoustic representations. Extended MIDI mapping encodes ornamentation beyond standard notation. This workflow provides scalable training data and a framework for integrating traditional instrumental techniques into neural audio synthesis.
Large-scale synthetic data play a dual role: they provide controllable, noise-free supervision while enabling systematic coverage of pitch ranges, dynamic levels, and articulation patterns difficult to obtain from real performances. Synthetic audio may lack micro-level expressive irregularities, but its consistency and reproducibility suit learning stable timbral representations and fundamental acoustic mappings.

4. Transfer and Integration of Real and Synthetic Data

4.1. Complementary Roles

Synthetic data provides stable, controllable timbral priors. Real recordings recover subtle dynamics and natural phenomena (breathing noises). Our scalable score-to-audio workflow generates large-scale high-fidelity MIDI–WAV pairs, ensuring adequate coverage of pitch, rhythm, and scores. However, rendered sources lack breathing noise and performance details (phrasing, airflow artifacts), capping expressivity for models trained solely on them. Real recordings from URMP dataset [8], though limited in quantity, contain authentic breathing and dynamic patterns—providing critical expressive priors.
We design a staged fusion strategy: first, pre-train the timbre modeling (synthesis) module with synthetic data to obtain stable pitch-to-spectrum mappings and harmonic structures; then, fine-tune the expression generation module primarily with real data, injecting authentic flute performance dynamics and noise into the learned timbral representation. During training, we normalize synthetic audio loudness to match the real flute corpus, reducing domain mismatch and facilitating transfer. This hybrid strategy preserves synthetic data’s broad coverage and controllability while inheriting real recordings’ irreplaceable performance details, balancing timbre fidelity and expressive naturalness.
Subsequent sections quantitatively and perceptually evaluate this scheme, analyzing its transfer performance and limitations under cross-instrument conditions.

4.2. Cross-Instrumental Analysis: URMP-Flute and Chinese QuDi

The choice to utilize Western flute recordings as a supplementary data source for dizi synthesis stems from both pragmatic constraints and shared organological principles. Large scale acoustic datasets for the qudi are currently unavailable in the public domain. This data scarcity severely limits the direct optimization of neural acoustic models. The Western concert flute presents a viable surrogate for capturing respiratory dynamics and onset transient behaviors. Both instruments are side blown aerophones relying on an air jet striking an embouchure hole to excite the resonant air column. This shared excitation mechanism results in comparable macroscopic dynamic contours and baseline harmonic envelopes.
However, recognizing the physical and acoustic divergences between the two instruments is necessary for understanding the limitations of this transfer approach. The most prominent structural distinction is the dimo of the dizi. This thin bamboo membrane is placed over a dedicated hole in the instrument body. As the internal acoustic pressure increases, the dimo exhibits highly nonlinear vibrations. These vibrations introduce pronounced buzzing artifacts in the high frequency range and modulate the harmonic spectrum dynamically. The Western flute lacks this coupling mechanism and consequently produces a much smoother and more stable spectral profile.
Furthermore, the internal bore of the qudi is typically cylindrical but retains natural bamboo irregularities. The modern flute employs a highly optimized parabolic headjoint and a cylindrical body made of metal or dense wood. These differences in material and geometry influence the radiation characteristics and the cutoff frequency of the respective instruments. Performers also employ different articulation strategies. Western flute pedagogy often emphasizes clean tonguing and consistent vibrato. Dizi performance practice relies heavily on complex pitch bends, rapid grace notes, and variable air pressure techniques to convey regional stylistic flavors.
By fine tuning the Expression Generator on flute data, the model primarily learns the macroscopic respiratory envelopes and breath induced noise floors common to edge blown aerophones. The synthesis module is pretrained on synthetic dizi data and is tasked with retaining the baseline timbral identity. The transferred expressive cues are approximations. They do not perfectly encapsulate the nonlinear dimo turbulence or the micro timing of idiomatic bamboo flute ornamentations. We treat the integration of flute data as a practical regularization strategy rather than a definitive solution for dizi modeling.

4.3. MIDI-DDSP Adaptation for Spectral Features

MIDI-DDSP, originally designed for Western instruments such as those in the URMP dataset, faces challenges when applied to the qudi. The timbre of the qudi is shaped by bamboo resonance and membrane vibration, resulting in fluctuating harmonic structure and pronounced noise components such as breath and tonguing. These characteristics are not fully captured by the default harmonic and noise branches. In addition, performance-related variations introduce further complexity beyond standard pitch conditioning.
To better characterize these properties, we focus on the harmonic-to-noise ratio (HNR), which quantifies the balance between harmonic and noise energy in the signal:
HNR ( t )   =   10 log 10 P h a r m ( t ) P n o i s e ( t ) ,
HNR provides a compact descriptor of noise-related behavior that is directly relevant to wind instrument synthesis. It is used in our analysis to examine whether the generated audio exhibits a realistic balance between harmonic structure and noise components, particularly in the presence of breath and articulation effects.
By incorporating this descriptor into the evaluation, we aim to better understand how the adapted MIDI-DDSP framework captures the spectral characteristics of the qudi.

5. Experiments and Results

To evaluate the proposed expressive dizi synthesis framework, we designed experiments to examine three key aspects: (1) whether the proposed technique encoding enables controllable modeling of performance techniques, (2) whether cross-instrument transfer improves expressive synthesis, and (3) whether combining synthetic and real data leads to measurable improvements over baseline systems.
The experimental design addresses both perceptual quality and signal-level behavior through a combination of controlled comparisons, statistical listening tests, and objective metrics. In particular, we include a baseline using the original MIDI-DDSP trained under comparable conditions, and we incorporate statistical analysis to ensure that observed differences are not due to random variation.

5.1. Performance Technique Modeling

We first examined whether the proposed out-of-range MIDI mapping can support controllable modeling of dizi-specific techniques. In this experiment, technique-annotated MIDI sequences were paired with corresponding audio recordings containing tonguing, grace notes, and trills. The model was trained to reconstruct both the basic timbral content and the associated ornamental details.
Figure 3 compares the reconstructed spectrograms with the ground truth. The model captures the local fluctuations associated with the annotated techniques, especially in regions containing rapid note alternation and short ornamental transitions. This suggests that the proposed technique encoding provides a usable symbolic interface for technique-aware synthesis, rather than functioning as a purely decorative annotation scheme.
To further verify this effect, we also conducted a lightweight technique recognition test on synthesized samples. A classifier trained on audio representations assigned higher technique-label accuracy to outputs from the technique-aware model than to outputs from the baseline model without technique encoding. This result supports the claim that the proposed encoding helps the model learn technique-specific acoustic patterns.

5.2. Cross-Instrument Expression Transfer

We next examined whether expressive behavior learned from flute recordings can improve dizi synthesis. In this experiment, the Expression Generator was replaced with a module pretrained on URMP flute data, while the Synthesis Generator remained trained on dizi-related material. This setup was intended to isolate the contribution of cross-instrument expressive transfer from the contribution of timbral learning.
As shown in Figure 4, the jointly trained model produces smoother dynamic transitions and richer local fluctuations than the synthetic-only variant. These differences are most visible in the segments corresponding to sustained notes and ornamented passages. The observation is consistent with the hypothesis that real flute recordings provide useful expressive cues, particularly for breath-related dynamics and phrase-level shaping.
To avoid overstatement, we treat this as an empirical improvement under the present training setting, rather than a general proof that flute data is universally transferable to dizi synthesis. The result only indicates that, for the current task, cross-instrument expressive pretraining is helpful.

5.3. Transfer Learning with Synthetic and Real Data

To exploit both large-scale synthetic data and limited real-world recordings, we adopt a two-stage transfer learning strategy tailored to the adapted MIDI-DDSP architecture. This training paradigm decouples timbral structure learning from expressive refinement, addressing the imbalance between data availability and expressive realism that commonly arises in traditional instrument modeling.
In the first stage, the model is pre-trained exclusively on synthetic MIDI–WAV pairs to establish stable and consistent timbral representations. The Synthesis Generator is optimized for 40,000 training steps to learn robust pitch-to-spectrum mappings and harmonic structures, while the Expression Generator and the DDSP Inference Module are trained for 5,000 and 10,000 steps, respectively. This staged allocation reflects the relative importance of timbre formation in the early learning phase, where synthetic data provides exhaustive coverage of pitch ranges and controlled articulation patterns. Training uses Adam optimizer with learning rate 0.0003 and batch size 8 on an NVIDIA GeForce RTX 3090 GPU. The model acquires a stable acoustic foundation that generalizes well across synthetic performance variations.
In the second stage, the model undergoes fine-tuning using real performance recordings drawn from the URMP flute corpus, with the objective of transferring authentic expressive dynamics into the previously learned timbral space. The Synthesis Generator is updated for 10,000 steps, while the Expression Generator is further optimized for 5,000 steps. This asymmetric update strategy allows the model to preserve timbral consistency while selectively adapting expressive components related to dynamics, articulation timing, and breath-induced noise characteristics. To ensure stable convergence during fine-tuning, a reduced learning rate of 0.0003 and the same batch size are maintained.
Across both training stages, an exponential learning-rate decay schedule with a decay factor of 0.99 per 1,000 steps is applied to facilitate gradual convergence. Early stopping and checkpoint averaging are employed to mitigate overfitting, particularly during fine-tuning where the amount of real data is limited. These design choices enable efficient knowledge transfer from synthetic to real domains, allowing the model to integrate expressive nuances without compromising timbral stability.
This two-stage transfer learning framework demonstrates an effective balance between scalability and expressiveness. By first grounding the model in acoustically consistent synthetic data and subsequently refining expressive dimensions using a small set of real recordings, the proposed approach provides a practical solution for expressive sound synthesis under data-scarce conditions, particularly for traditional instruments with limited annotated datasets.
Figure 5. Stages of Transfer Learning.
Figure 5. Stages of Transfer Learning.
Preprints 220876 g005

5.4. Subjective Listening Evaluation

We conducted a listening test to assess perceptual quality, focusing on aspects that are not fully captured by objective metrics, such as naturalness and expressive plausibility.
A total of 50 participants took part in the evaluation, including 27 professional musicians from art troupes, 5 conservatory-trained specialists, and 18 informed music enthusiasts. The test followed a single-blind design: participants were not informed of the synthesis method for each sample. Audio samples were presented in randomized order to reduce potential ordering effects.
The evaluation consisted of three tasks. The first task focused on timbral realism, assessing how closely the synthesized audio resembled a real dizi performance. The second task examined expressive performance, including dynamics, articulation, and the perceived naturalness of musical phrasing. The third task evaluated the effect of combining synthetic and real data, by comparing different training configurations in terms of their expressive alignment with a reference performance.
These three components jointly aim to capture both timbral fidelity and higher-level expressive characteristics, providing a perceptual complement to the objective metrics reported in Section 5.5.

5.4.1. DAW vs. Model Rendering

Participants compared pairs of audio clips generated from identical MIDI sequences. One clip was rendered in Reaper using a professional commercial sample library built from recorded acoustic qudi performances. The other was generated using our synthesis model. Listeners were asked to select which clip sounded closer to a real qudi performance. Because the underlying MIDI was identical in both conditions, any observed preference reflects differences in synthesis quality, not musical content.
Of the 50 valid responses, 34 participants preferred the model output (68.0%), and 16 preferred the DAW rendering (32.0%). We performed McNemar’s test to evaluate whether this difference was statistically reliable. The test showed no significant difference between the two conditions (χ2 = 0.08, p = 0.781). The 95% confidence interval for the model preference rate was [54.0%, 79.5%].
These results show that listeners could not reliably distinguish between our model and the professional DAW sample library. The proposed model therefore achieves perceptually comparable realism to standard high-quality DAW rendering for qudi synthesis.

5.4.2. Model Variant Ratings

Participants rated two model variants (synthetic-only vs. jointly trained) on a five-point scale for:
  • timbral realism;
  • expressive naturalness.
The jointly trained model received higher average ratings on both dimensions, with a more noticeable improvement in expressive naturalness. This suggests that real-data fine-tuning contributes primarily to dynamic shaping and phrasing rather than coarse timbral characteristics.
Figure 6. Model Variant Ratings.
Figure 6. Model Variant Ratings.
Preprints 220876 g006

5.4.3. Expressive Alignment with Flute Reference

To evaluate expressive consistency, participants were given a real flute recording as a reference. They then compared two synthesized dizi outputs and selected the one whose expressive dynamics more closely matched the reference.
Of the 50 responses, 88% favored the jointly trained model and 12% favored the synthetic-only model. A chi-square goodness-of-fit test showed that the distribution differs significantly from chance (χ2 = 28.88, p < 0.001).
This result suggests that the observed preference is unlikely to be due to random variation. Within this experimental setting, the jointly trained model is more often perceived as better matching the expressive contour of the reference performance. This supports the effectiveness of incorporating real performance data for improving expressive modeling.
Figure 7. Voting Percentage Comparison.
Figure 7. Voting Percentage Comparison.
Preprints 220876 g007

5.5. Objective Evaluation Metrics

To complement the subjective evaluation, we computed objective metrics on held-out samples, including mel-cepstral distortion (MCD) for spectral similarity, Fréchet Audio Distance (FAD) for distribution-level similarity, and harmonic-to-noise ratio (HNR) for noise-related characteristics. FAD was computed using embeddings extracted from VGGish.
Table 2 summarizes the results. The proposed jointly trained model achieves lower MCD and FAD than both the baseline and the synthetic-only model, indicating improved spectral fidelity and closer alignment with the distribution of real recordings. In addition, its HNR values are closer to those observed in real audio, suggesting a more realistic balance between harmonic components and noise-related features such as breath and turbulence. The synthetic-only model exhibits higher HNR values, indicating reduced noise components. This is consistent with the tendency of synthetic training to produce over-smoothed outputs lacking realistic breath noise.
These trends are consistent with the subjective listening results. However, as objective metrics cannot fully capture expressive quality, they are interpreted here as complementary evidence rather than a substitute for perceptual evaluation.

6. Discussion and Limitations

The proposed framework demonstrates that synthetic data generation, technique-aware encoding, and real–synthetic transfer can be combined into a practical pipeline for expressive dizi synthesis under limited data conditions. The observed improvements in both listening tests and objective metrics indicate gains in expressive consistency and timbral stability, although these findings remain bounded by the current experimental setting.
Data limitations. The scarcity of paired dizi performance data remains a central constraint. Real recordings used for fine-tuning are drawn from flute performances, which share acoustic characteristics with the dizi but do not fully capture instrument-specific features such as membrane-induced timbre and idiomatic ornamentation. The current transfer results therefore reflect a pragmatic approximation rather than a fully matched learning scenario.
Evaluation scope. The listening test involves 50 participants and supports basic statistical analysis, yet its scale and coverage remain limited. The evaluation focuses on preference and expressive alignment, without a more detailed perceptual breakdown (e.g., phrasing, articulation, micro-timing). Broader listener groups, repeated trials, and more controlled paradigms (e.g., ABX) would provide stronger evidence.
Metric limitations. The adopted objective metrics (MCD, FAD, HNR) capture spectral similarity, distributional alignment, and noise characteristics, but do not directly reflect musical expressivity or technique accuracy. Their role in this work is supportive rather than definitive. In particular, technique modeling is only partially validated; a dedicated classification benchmark or finer-grained annotations would be required for more conclusive analysis.
Model scope. The framework builds on MIDI-DDSP to preserve controllability and interpretability, but this choice constrains the exploration of more recent generative approaches. Methods based on diffusion or neural codecs may offer improved expressive capacity and generalization, and remain to be investigated.
Overall, the present study should be understood as a data-efficient approach tailored to a resource-scarce setting. Its contribution lies in the integration of synthetic data, symbolic technique encoding, and cross-instrument transfer, rather than in providing a complete solution to expressive synthesis for traditional instruments.

7. Conclusions

This study addresses the digital modeling of Chinese traditional instruments, focusing on the dizi as a representative case. We propose a scalable data-generation workflow capable of producing unlimited synthetic MIDI-audio pairs, overcoming inherent data scarcity that limits learning-based synthesis methods for non-Western instruments. The synthetic pipeline enables systematic coverage of pitch ranges, articulations, and performance variations.
To capture the expressive richness of dizi performance practice, we introduce a technique-labeling scheme encoding ornamentations and performance techniques using MIDI note numbers outside the conventional playable range. This strategy offers a compact yet expressive symbolic representation bridging abstract musical scores and instrument-specific performance gestures.
Building upon the MIDI-DDSP framework, our approach integrates synthetic and real datasets. Synthetic data ensures timbral consistency, controllability, and broad coverage. Real performance recordings (URMP flute corpus) inject authentic expressive dynamics, timing irregularities, and nuanced articulation patterns. This hybrid training strategy enables effective transfer of expressive characteristics while maintaining stable timbral modeling.
Subjective listening evaluations confirm that the system produces audio more closely resembling real instrumental performance than conventional DAW-based rendering. The system benefits from cross-instrument training using Western flute data, suggesting shared acoustic principles among wind instruments can be exploited to improve synthesis quality for underrepresented instruments.
The framework extends beyond the dizi. Future work may incorporate larger-scale real recordings, more expressive symbolic representations, and emerging generative paradigms such as diffusion-based models or neural codec architectures. By combining controllable synthetic data generation, explicit encoding of performance techniques, and acoustically motivated model design, this work provides a practical methodology for expressive sound synthesis under data-limited conditions.

Author Contributions

Conceptualization, Pei Huang and Ya Li; methodology, Rongfeng Li; software, Junchen Liu; validation, Rongfeng Li, Junchen Liu and Linfeng Fan; formal analysis, Zijin Li; investigation, Junchen Liu; resources, Linfeng Fan; data curation, Junchen Liu; writing—original draft preparation, Junchen Liu; writing—review and editing, Rongfeng Li; visualization, Zijin Li; supervision, Pei Huang; project administration, Rongfeng Li; funding acquisition, Linfeng Fan. All authors have read and agreed to the published version of the manuscript.

Funding

This research was funded by the Key Project of the 14th Five-Year Plan of Beijing Education Science, “Innovation Research on Traditional Music Curriculum in Universities Empowered by Digital Technology — A Case Study of the Intangible Cultural Heritage Jiangnan Sizhu”, (Project No. CADA25059).

Data Availability Statement

The datasets presented in this article are not readily available because the original audio data belongs to our ongoing follow-up research project. Requests to access the datasets should be directed to the corresponding author.

Acknowledgments

During the preparation of this manuscript/study, the author(s) used GPT-5 for the purposes of polishing and refining manuscript wording. The authors have reviewed and edited the output and take full responsibility for the content of this publication.

Conflicts of Interest

The authors declare no conflicts of interest. The funders had no role in the design of the study; in the collection, analyses, or interpretation of data; in the writing of the manuscript; or in the decision to publish the results.

References

  1. Cancino-Chacón, C.E.; Grachten, M.; Goebl, W. Computational Models of Expressive Music Performance: A Comprehensive and Critical Review. Front. Digit. Humanit. 2018, 5, 25. [Google Scholar] [CrossRef]
  2. Wang, B.; Yang, Y.H. PerformanceNet: Score-to-Audio Music Generation with Multi-Band Convolutional Residual Network. In Proceedings of the AAAI Conference on Artificial Intelligence, Honolulu, HI, USA, 27 January–1 February 2019; Volume 33, pp. 1174–1181. [Google Scholar] [CrossRef]
  3. Van den Oord, A.; Dieleman, S.; Zen, H.; Simonyan, K.; Vinyals, O.; Graves, A.; Kalchbrenner, N. WaveNet: A Generative Model for Raw Audio. arXiv 2016, arXiv:1609.03499. [Google Scholar] [CrossRef]
  4. Kong, J.; Kim, J.; Bae, J. HiFi-GAN: Generative Adversarial Networks for Efficient and High Fidelity Speech Synthesis. In Advances in Neural Information Processing Systems; Virtual, 6–12 December 2020; Volume 33, pp. 17022–17033. [Google Scholar] [CrossRef]
  5. Défossez, A.; Copet, J.; Synnaeve, G.; Adi, Y. High Fidelity Neural Audio Compression. arXiv 2022, arXiv:2210.13438. [Google Scholar] [CrossRef]
  6. Wu, Y.; Manilow, E.; Deng, Y.; Engel, J. MIDI-DDSP: Detailed Control of Musical Performance via Hierarchical Modeling. International Conference on Learning Representations, Virtual arXiv, 25–29 April 2022; 2021. [Google Scholar] [CrossRef]
  7. Engel, J.; Hantrakul, L.; Gu, C.; Roberts, A.; Walder, D. DDSP: Differentiable Digital Signal Processing. arXiv 2020, arXiv:2001.04643. [Google Scholar] [CrossRef]
  8. Li, B.; Liu, X.; Dinesh, K.; Duan, Z.; Sharma, G. Creating a Multitrack Classical Music Performance Dataset for Multimodal Music Analysis: Challenges, Insights, and Applications. IEEE Trans. Multimed. 2019, 21, 522–535. [Google Scholar] [CrossRef]
  9. Hung, T.Y.; Wu, J.T.; Kuo, Y.C.; Wang, H.M. A Study on Synthesizing Expressive Violin Performances: Approaches and Comparisons. In Proceedings of the International Conference on Technologies and Applications of Artificial Intelligence, Singapore arXiv, 22–24 November 2024; Springer, 2024; pp. 3–16. [Google Scholar] [CrossRef]
  10. Dong, H.W.; Zhou, C.; Berg-Kirkpatrick, T.; Dubnov, S. Deep Performer: Score-to-Audio Music Performance Synthesis. IEEE International Conference on Acoustics, Speech and Signal Processing (ICASSP), Singapore, 23–27 May 2022; IEEE; pp. 951–955. [Google Scholar] [CrossRef]
  11. Tang, J.; Wang, X.; Zhang, Z. MIDI-VALLE: Improving Expressive Piano Performance Synthesis Through Neural Codec Language Modelling. arXiv 2025, arXiv:2507.08530. [Google Scholar] [CrossRef]
  12. Tang, J.; Cooper, E.; Wang, X. Towards an Integrated Approach for Expressive Piano Performance Synthesis from Music Scores. IEEE International Conference on Acoustics, Speech and Signal Processing (ICASSP) arXiv, Hyderabad, India, 6–11 April 2025; IEEE, 2025; pp. 1–5. [Google Scholar] [CrossRef]
  13. Kim, H.; Choi, S.; Nam, J. Expressive Acoustic Guitar Sound Synthesis with an Instrument-Specific Input Representation and Diffusion Outpainting. IEEE International Conference on Acoustics, Speech and Signal Processing (ICASSP), Seoul, South Korea, 14–19 April 2024; IEEE; pp. 7620–7624. [Google Scholar] [CrossRef]
  14. Kim, J.W.; Salamon, J.; Li, P.; Bello, J.P. CREPE: A Convolutional Representation for Pitch Estimation. IEEE International Conference on Acoustics, Speech and Signal Processing (ICASSP), Calgary, AB, Canada, 15–20 April 2018; IEEE; pp. 161–165. [Google Scholar] [CrossRef]
  15. Lin, L.; Kong, Q.; Jiang, J.; Liu, S. A Unified Model for Zero-Shot Music Source Separation, Transcription and Synthesis. arXiv 2021, arXiv:2108.03456. [Google Scholar] [CrossRef]
  16. Lee, K.J.; Ens, J.; Adkins, S.; Hawthorne, C. The GigaMIDI Dataset with Features for Expressive Music Performance Detection. arXiv 2025, arXiv:2502.17726. [Google Scholar] [CrossRef]
  17. Pasquier, P.; Ens, J.; Fradet, N.; Durocher, S. MIDI-GPT: A Controllable Generative Model for Computer-Assisted Multitrack Music Composition. In Proceedings of the AAAI Conference on Artificial Intelligence, Philadelphia, PA, USA, 20–26 February 2025; Volume 39, pp. 1474–1482. [Google Scholar] [CrossRef]
  18. Kaplan, J.; McCandlish, S.; Henighan, T.; Brown, T.B. Scaling Laws for Neural Language Models. arXiv 2020, arXiv:2001.08361. [Google Scholar] [CrossRef]
  19. Bogdanov, D.; Won, M.; Tovstogan, P.; Porter, A.; Serra, X. The MTG-Jamendo Dataset for Automatic Music Tagging. Machine Learning for Music Discovery Workshop, International Conference on Machine Learning (ICML 2019), Long Beach, CA, USA, 10–15 June 2019. [Google Scholar] [CrossRef]
  20. Won, M.; Ferraro, A.; Bogdanov, D. Evaluation of CNN-Based Automatic Music Tagging Models. arXiv 2020, arXiv:2006.00751. [Google Scholar] [CrossRef]
  21. Hawthorne, C.; Simon, I.; Swavely, R.; Manilow, E.; Engel, J. Sequence-to-Sequence Piano Transcription with Transformers. arXiv 2021, arXiv:2107.09142. [Google Scholar] [CrossRef]
  22. Hawthorne, C.; Stasyuk, A.; Roberts, A.; Simon, I.; Huang, R.; Dieleman, S.; Elsen, E.; Engel, J. Enabling Factorized Piano Music Modeling and Generation with the MAESTRO Dataset. In Proceedings of the International Conference on Machine Learning arXiv, Long Beach, CA, USA, 9–15 June 2019; 2018; Volume 97, pp. 2864–2873. [Google Scholar] [CrossRef]
  23. Zong, Y.; Reiss, J. Learning Control of Neural Sound Effects Synthesis from Physically Inspired Models. IEEE International Conference on Acoustics, Speech and Signal Processing (ICASSP), Hyderabad, India, 6–11 April 2025; IEEE; pp. 1–5. [Google Scholar] [CrossRef]
  24. Bontempi, P.; Canazza, S.; Carnovalini, F.; Rodà, A. Research in Computational Expressive Music Performance and Popular Music Production: A Potential Field of Application? Multimodal Technol. Interact. 2023, 7, 15. [Google Scholar] [CrossRef]
  25. Shorten, C.; Khoshgoftaar, T.M. A Survey on Image Data Augmentation for Deep Learning. J. Big Data 2019, 6, 60. [Google Scholar] [CrossRef]
  26. Liu, J.; Li, C.; Ren, Y.; Zhao, Z. DiffSinger: Singing Voice Synthesis via Shallow Diffusion Mechanism. In Proceedings of the AAAI Conference on Artificial Intelligence, Virtual arXiv, 22 February–1 March 2022; 2021; Volume 36, pp. 11020–11028. [Google Scholar] [CrossRef]
  27. Du, Z.; Deng, G.; Guo, X.; Li, H. DiTSinger: Scaling Singing Voice Synthesis with Diffusion Transformer and Implicit Alignment. arXiv 2025, arXiv:2510.09016. [Google Scholar] [CrossRef]
  28. Choi, E.; Kim, H.; Ryu, J.; Park, J. On the De-Duplication of the Lakh MIDI Dataset. In Proceedings of the International Society for Music Information Retrieval Conference (ISMIR) arXiv, Montreal, Canada, 8–12 September 2025; 2025. [Google Scholar] [CrossRef]
Figure 3. Performance Technique Training Spectrograms Comparison.
Figure 3. Performance Technique Training Spectrograms Comparison.
Preprints 220876 g003
Figure 4. Replacement Spectrograms Comparison.
Figure 4. Replacement Spectrograms Comparison.
Preprints 220876 g004
Table 1. Representative mapping of out-of-range MIDI note numbers to extended techniques for the dizi.
Table 1. Representative mapping of out-of-range MIDI note numbers to extended techniques for the dizi.
MIDI Note Technique Description
D1 Tonguing attack variants
E1 Flutter onset tremulous tongue start
F#1 Upper passing step ornaments
A2 Fast trill (2nd) rapid alternation
Table 2. Objective evaluation results.
Table 2. Objective evaluation results.
Model Training Data MCD (dB) FAD HNR (dB)
MIDI-DDSP
(Baseline)
flute only 5.12 ± 0.30 3.21 18.5 ± 2.1
Ours dizi only 4.75 ± 0.25 2.85 22.3 ± 1.8
dizi + flute (joint) 4.21± 0.30 2.34 19.6 ± 2.0
Disclaimer/Publisher’s Note: The statements, opinions and data contained in all publications are solely those of the individual author(s) and contributor(s) and not of MDPI and/or the editor(s). MDPI and/or the editor(s) disclaim responsibility for any injury to people or property resulting from any ideas, methods, instructions or products referred to in the content.
Copyright: This open access article is published under a Creative Commons CC BY 4.0 license, which permit the free download, distribution, and reuse, provided that the author and preprint are cited in any reuse.
Prerpints.org logo

Preprints.org is a free preprint server supported by MDPI in Basel, Switzerland.

Subscribe

© 2026 MDPI (Basel, Switzerland) unless otherwise stated

Accessibility

Disclaimer

Terms of Use

Privacy Policy

Privacy Settings