TulipAIs commited on
Commit
ef18b84
1 Parent(s): 46ef789

remove channel log tab + update about tab

Browse files
Files changed (1) hide show
  1. app.py +9 -190
app.py CHANGED
@@ -1455,203 +1455,22 @@ def ui_full(launch_kwargs):
1455
  send_gen_a = gr.Button("Send to AudioGen", variant="primary")
1456
  with gr.Column():
1457
  info = gr.Textbox(label="Audio Info", lines=10, interactive=False)
1458
- with gr.Tab("Changelog"):
1459
- gr.Markdown(
1460
- """
1461
- ## Changelog:
1462
-
1463
-
1464
- ## v3.0.0
1465
- - Changed the name from AudioCraft Plus to TulipAI Soundscapes
1466
-
1467
-
1468
- ### v2.0.0a
1469
-
1470
- - Forgot to move all the update to app.py from temp2.py... oops
1471
-
1472
-
1473
-
1474
- ### v2.0.0
1475
-
1476
- - Changed name from MusicGen+ to AudioCraft Plus
1477
-
1478
- - Complete overhaul of the repo "backend" with the latest changes from the main facebookresearch repo
1479
-
1480
- - Added a new decoder: MultiBand_Diffusion
1481
-
1482
- - Added AudioGen: a new tab for generating audio
1483
-
1484
-
1485
-
1486
- ### v1.2.8c
1487
-
1488
- - Implemented Reverse compatibility for audio info tab with previous versions
1489
-
1490
-
1491
-
1492
- ### v1.2.8b
1493
-
1494
- - Fixed the error when loading default models
1495
-
1496
-
1497
-
1498
- ### v1.2.8a
1499
-
1500
- - Adapted Audio info tab to work with the new structure prompts feature
1501
-
1502
- - Now custom models actually work, make sure you select the correct base model
1503
-
1504
-
1505
-
1506
- ### v1.2.8
1507
-
1508
- - Now you will also recieve json file with metadata of generated audio
1509
-
1510
- - Added error messages in Audio Info tab
1511
-
1512
- - Added structure prompts: you can select bpm, key and global prompt for all prompts
1513
-
1514
- - Added time display next to each prompt, can be calculated with "Calculate Timings" button
1515
-
1516
-
1517
-
1518
- ### v1.2.7
1519
-
1520
- - When sending generated audio to Input Audio, it will send a backup audio with default settings
1521
- (best for continuos generation)
1522
-
1523
- - Added Metadata to generated audio (Thanks to AlexHK ♥)
1524
-
1525
- - Added Audio Info tab that will display the metadata of the input audio
1526
-
1527
- - Added "send to Text2Audio" button in Audio Info tab
1528
-
1529
- - Generated audio is now stored in the "output" folder (Thanks to AlexHK ♥)
1530
-
1531
- - Added an output area with generated files and download buttons
1532
-
1533
- - Enhanced Stereo effect (Thanks to AlexHK ♥)
1534
-
1535
-
1536
-
1537
- ### v1.2.6
1538
-
1539
- - Added option to generate in stereo (instead of only mono)
1540
-
1541
- - Added dropdown for selecting output sample rate (model default is 32000)
1542
-
1543
-
1544
-
1545
- ### v1.2.5a
1546
-
1547
- - Added file cleaner (This comes from the main facebookresearch repo)
1548
-
1549
- - Reorganized a little, moved audio to a seperate tab
1550
-
1551
-
1552
-
1553
- ### v1.2.5
1554
-
1555
- - Gave a unique lime theme to the webui
1556
-
1557
- - Added additional output for audio only
1558
-
1559
- - Added button to send generated audio to Input Audio
1560
-
1561
- - Added option to trim Input Audio
1562
-
1563
-
1564
-
1565
- ### v1.2.4
1566
-
1567
- - Added mic input (This comes from the main facebookresearch repo)
1568
-
1569
-
1570
-
1571
- ### v1.2.3
1572
-
1573
- - Added option to change video size to fit the image you upload
1574
-
1575
-
1576
-
1577
- ### v1.2.2
1578
-
1579
- - Added Wiki, Changelog and About tabs
1580
-
1581
-
1582
-
1583
- ### v1.2.1
1584
-
1585
- - Added tabs and organized the entire interface
1586
-
1587
- - Added option to attach image to the output video
1588
-
1589
- - Added option to load fine-tuned models (Yet to be tested)
1590
-
1591
-
1592
-
1593
- ### v1.2.0
1594
-
1595
- - Added Multi-Prompt
1596
-
1597
-
1598
-
1599
- ### v1.1.3
1600
-
1601
- - Added customization options for generated waveform
1602
-
1603
-
1604
-
1605
- ### v1.1.2
1606
-
1607
- - Removed sample length limit: now you can input audio of any length as music sample
1608
-
1609
-
1610
-
1611
- ### v1.1.1
1612
-
1613
- - Improved music sample audio quality when using music continuation
1614
-
1615
-
1616
-
1617
- ### v1.1.0
1618
-
1619
- - Rebuilt the repo on top of the latest structure of the main MusicGen repo
1620
-
1621
- - Improved Music continuation feature
1622
-
1623
-
1624
-
1625
- ### v1.0.0 - Stable Version
1626
-
1627
- - Added Music continuation
1628
- """
1629
- )
1630
  with gr.Tab("About"):
1631
  gen_type = gr.Text(value="music", interactive=False, visible=False)
1632
  gen_type_a = gr.Text(value="audio", interactive=False, visible=False)
1633
  gr.Markdown(
1634
  """
1635
- This is your private demo for [MusicGen](https://github.com/facebookresearch/audiocraft), a simple and controllable model for music generation
1636
- presented at: ["Simple and Controllable Music Generation"](https://huggingface.co/papers/2306.05284)
1637
-
1638
- ## MusicGen+ is an extended version of the original MusicGen by facebookresearch.
1639
 
1640
- ### Repo: https://github.com/GrandaddyShmax/audiocraft_plus/tree/plus
1641
-
1642
- ---
1643
-
1644
- ### This project was possible thanks to:
1645
-
1646
- #### GrandaddyShmax - https://github.com/GrandaddyShmax
1647
-
1648
- #### Camenduru - https://github.com/camenduru
1649
-
1650
- #### rkfg - https://github.com/rkfg
1651
-
1652
- #### oobabooga - https://github.com/oobabooga
1653
 
1654
- #### AlexHK - https://github.com/alanhk147
 
 
 
 
 
1655
  """
1656
  )
1657
 
 
1455
  send_gen_a = gr.Button("Send to AudioGen", variant="primary")
1456
  with gr.Column():
1457
  info = gr.Textbox(label="Audio Info", lines=10, interactive=False)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1458
  with gr.Tab("About"):
1459
  gen_type = gr.Text(value="music", interactive=False, visible=False)
1460
  gen_type_a = gr.Text(value="audio", interactive=False, visible=False)
1461
  gr.Markdown(
1462
  """
1463
+ #Soundscapes by TulipAI
1464
+ Welcome to Soundscapes - TulipAI's premiere Audio Storytelling Toolkit. Designed with modern content creators in mind, our AI-driven platform effortlessly generates audio sound effects tailored to your unique needs.
 
 
1465
 
1466
+ ##PERFECT FOR:
 
 
 
 
 
 
 
 
 
 
 
 
1467
 
1468
+ - Podcasters aiming to immerse their listeners.
1469
+ - Audiobooks sound engineers
1470
+ - Audio engineers seeking that elusive sound.
1471
+ - Producers wanting to enrich their auditory experience.
1472
+ - Sound designers craving innovative tools.
1473
+ - YouTubers desiring to elevate their content.
1474
  """
1475
  )
1476