温暖的怀抱评论的话题
温暖的怀抱 3周前 评论了 星和梦 创建的话题 › 找一个音频播放器

肯定呀。

温暖的怀抱 3周前 评论了 挚爱湘伦 创建的话题 › 你知道调音师最头疼的情况是什么吗?

他是用什么软件修的音啊?

温暖的怀抱 3周前 评论了 星和梦 创建的话题 › 找一个音频播放器

我用的音乐速度调节器。

温暖的怀抱 3周前 评论了 ESports何某仙 创建的话题 › 2025年4月3日MultiTTS更新日志(来源于作者的电报群)

看到你这个帖子,我就去更新了一下我那个语音包。

温暖的怀抱 3周前 评论了 诛仙剑 创建的话题 › 我去发生了什么情况,这社区发生了什么

那就去看看置顶吧。

温暖的怀抱 3周前 评论了 安和桥 创建的话题 › 你们和邻居相处的时候,有没有让你们很难忘的事情?开心也好,难过也罢,进来看看我的故事。

我在想他们这样做有什么意义吗?

温暖的怀抱 3周前 评论了 影子说 创建的话题 › 各位好来问一下,你们知道哪里有音频转视频或者视频转音频的软件吗?

视频转音频可以在应用商店搜索音乐剪辑。

温暖的怀抱 3周前 评论了 纸上得来终觉浅 创建的话题 › 最近好无聊,来这里寻找人聊聊天

好吧。

温暖的怀抱 3周前 评论了 温暖的怀抱 创建的话题 › 刚才看消息列表的时候,发现了一条系统通知,满脸懵逼的点开看。

那不是很有可能是这本来就是可能。

温暖的怀抱 3周前 评论了 纸上得来终觉浅 创建的话题 › 最近好无聊,来这里寻找人聊聊天

想看您分享一些社会经验。

温暖的怀抱 3周前 评论了 行色匆匆 创建的话题 › 我来试试在社区的网页版发帖

我刚才试了一下,天坦这边无法显示,您去浏览器就知道结果了。

温暖的怀抱 3周前 评论了 行色匆匆 创建的话题 › 我来试试在社区的网页版发帖

您确定吗?那我试一下一段html5代码。

场控申请表
<h1>场控申请表</h1>
<p>为了使申请具有合法合规性,请填写这份表单。</p>

<p>1.你是?(单选)</p>
<label><input type="radio" name="role" value="申请人"> A:申请人</label><br>
<label><input type="radio" name="role" value="代申请人"> B:代申请人</label><br>
<label><input type="radio" name="role" value="总负责人"> C:总负责人</label><br>
<label><input type="radio" name="role" value="老师"> D:老师</label><br>
<label><input type="radio" name="role" value="其他"> E:其他(请注明)</label><br>
<input type="text" id="otherRole" maxlength="15" name="otherRole" placeholder="请注明,15字以内" style="display: none;">
<script>
    document.querySelectorAll('input[name="role"]').forEach(radio => {
        radio.addEventListener('change', function() {
            document.getElementById('otherRole').style.display = this.value === '其他' ? 'block' : 'none';
        });
    });
</script>

<label for="id">2.你的ID是?(必填)</label>
<input type="text" id="id" maxlength="15" name="id" placeholder="请输入你的ID,15字以内" required>

<p>3.你所在的班级是?(必填)</p>
<label><input type="radio" name="class" value="所在班级"> A:所在班级</label><br>
<label><input type="radio" name="class" value="所授班级"> B:所授班级</label><br>
<label><input type="radio" name="class" value="无"> C:无</label><br>

<p>4.你需要的设备(多选)【最少选择1项】</p>
<label><input type="checkbox" name="equipment" value="音乐播放类"> A:音乐播放类(音箱、声卡、U盘、读卡器等)</label><br>
<label><input type="checkbox" name="equipment" value="提醒和播放音效类"> B:提醒和播放音效类(高音喇叭、麦克风等)</label><br>
<label><input type="checkbox" name="equipment" value="乐器类"> C:乐器类(陶笛、竖笛、竹笛、吉他等)</label><br>
<label><input type="checkbox" name="equipment" value="其他"> D:其他(请注明)</label><br>
<input type="text" id="otherEquipment" maxlength="50" name="otherEquipment" placeholder="请注明,50字以内" style="display: none;">
<label><input type="checkbox" name="equipment" value="无"> E:无</label><br>
<script>
    document.querySelectorAll('input[name="equipment"]').forEach(checkbox => {
        checkbox.addEventListener('change', function() {
            document.getElementById('otherEquipment').style.display = this.value === '其他' && this.checked ? 'block' : 'none';
        });
    });
</script>

<label for="date">5.场控日期(十二位日期数,年四位月两位日两位点两位分两位)</label>
<input type="number" id="date" maxlength="13" name="date" placeholder="请输入场控日期,格式:YYYYMMDD HHMM" required>

<label for="duration">6.场控时长(单位:分)</label>
<input type="number" id="duration" name="duration" placeholder="请输入场控时长" required>

<p>7.场控类型</p>
<label><input type="radio" name="controlType" value="律动"> A:律动</label><br>
<label><input type="radio" name="controlType" value="标准"> B:标准</label><br>
<label><input type="radio" name="controlType" value="其他"> C:其他(请注明)</label><br>
<input type="text" id="otherControlType" maxlength="15" name="otherControlType" placeholder="请注明,15字以内" style="display: none;">
<script>
    document.querySelectorAll('input[name="controlType"]').forEach(radio => {
        radio.addEventListener('change', function() {
            document.getElementById('otherControlType').style.display = this.value === '其他' ? 'block' : 'none';
        });
    });
</script>

<label for="theme">8.场控主题</label>
<input type="text" id="theme" name="theme" placeholder="请输入场控主题">

<label for="content">9.场控大致内容</label>
<textarea id="content" name="content" rows="4" placeholder="请输入场控大致内容"></textarea>

<button onclick="submitForm()">提交</button>

<script>
    function submitForm() {
        const role = document.querySelector('input[name="role"]:checked') ? document.querySelector('input[name="role"]:checked').value : '';
        const otherRole = document.getElementById('otherRole').value;
        const id = document.getElementById('id').value;
        const classType = document.querySelector('input[name="class"]:checked') ? document.querySelector('input[name="class"]:checked').value : '';
        const equipment = Array.from(document.querySelectorAll('input[name="equipment"]:checked')).map(el => el.value);
        const otherEquipment = document.getElementById('otherEquipment').value;
        const date = document.getElementById('date').value;
        const duration = document.getElementById('duration').value;
        const controlType = document.querySelector('input[name="controlType"]:checked') ? document.querySelector('input[name="controlType"]:checked').value : '';
        const otherControlType = document.getElementById('otherControlType').value;
        const theme = document.getElementById('theme').value;
        const content = document.getElementById('content').value;

        const result = `明眼人截图,视障者使用读屏提供的复制功能。1. 你是:${role === '其他' ? otherRole : role}\n2. 你的ID是:${id}\n3. 你所在的班级是:${classType}\n4. 你需要的设备:${equipment.join(', ')}${otherEquipment ? ' (' + otherEquipment + ')' : ''}\n5. 场控日期:${date}\n6. 场控时长:${duration} 分钟\n7. 场控类型:${controlType === '其他' ? otherControlType : controlType}\n8. 场控主题:${theme}\n9. 场控大致内容:${content}\n\n复制并粘贴到QQ号为3032013220的用户发送即可通过,如您有问卷发布者的其他联系方式,发送至这些联系方式也可通过。`;

        alert(result);
        navigator.clipboard.writeText(result).then(() => {
            alert("内容还未复制,请重新点击提交按钮,其实我在刚才就提示你了,只是你没看见。");
        });
    }
</script>
温暖的怀抱 3周前 评论了 行色匆匆 创建的话题 › 我来试试在社区的网页版发帖

告诉您这个功能是html5,如果你把html5代码粘贴进去,说不定有一大半都会变成html,比如你粘贴一个有序列表的html代码,它就会变成一个有序列表的形式,看上去就像有序列表。

温暖的怀抱 3周前 评论了 Xuandia 创建的话题 › 发个单机游戏。

好吧

温暖的怀抱 3周前 评论了 温暖的怀抱 创建的话题 › 刚才看消息列表的时候,发现了一条系统通知,满脸懵逼的点开看。

应该不算是借用,因为这个账号本来就是我从我同学那里拿过来的,我同学应该会用吧。

温暖的怀抱 3周前 评论了 用户150612 创建的话题 › 问一个微信的问题和找一个能倒放音频和视频的应用。

社区搜索一下,我之前发的帖子好像有发过如何分割音乐和拼接音乐的教程,那里面就有音乐速度调节器。

温暖的怀抱 3周前 评论了 温暖的怀抱 创建的话题 › 刚才看消息列表的时候,发现了一条系统通知,满脸懵逼的点开看。

嗯,明白,不过那个时候我还没上来呢,一般工作日的话,我都是下午5点过后才会上来。

温暖的怀抱 3周前 评论了 Xuandia 创建的话题 › 发个单机游戏。

所以跟服务器有什么关系啊?

温暖的怀抱 3周前 评论了 Xuandia 创建的话题 › 发个单机游戏。

我记得不是单机的吗?

温暖的怀抱 3周前 评论了 lpy 创建的话题 › 想问一下在电脑上录制如何实现只录制电脑本身不录制外部的声音

还是用声卡录好一些,不想要外部声音,直接把麦克风音量调到零就行。