Recherche avancée

Médias (9)

Mot : - Tags -/soundtrack

Autres articles (105)

  • L’agrémenter visuellement

    10 avril 2011

    MediaSPIP est basé sur un système de thèmes et de squelettes. Les squelettes définissent le placement des informations dans la page, définissant un usage spécifique de la plateforme, et les thèmes l’habillage graphique général.
    Chacun peut proposer un nouveau thème graphique ou un squelette et le mettre à disposition de la communauté.

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

Sur d’autres sites (7177)

  • Generate FFMPEG Waveform Data

    30 septembre 2015, par samchoi

    Given a video file (e.g. test.mkv), is it possible to output the data points used to create a waveform using ffmpeg (or any other tool) ?

    I’m looking to create a file that maps audio level to time, so that I can parse the data. Most of the examples I am finding, output an image.

    The closest I’ve gotten is generating raw binary data with :
    ffmpeg -i test.mkv -ac 1 -filter:a aresample=8000 -map 0:a -c:a pcm_s16le -f data -

  • I need to modify this repository

    14 septembre 2021, par Jegadish Tamizh

    I got this telegram audio extracter bot repository from GitHub. This bot extract and convert the audio to MP3. but I want to extract the audio in native format without Re Encoding.. I can do it in ffmpeg.. but with python I can't understand.. what changes will make this work..?

    


    from helpers.tools import execute, clean_up
from helpers.upload import upload_audio, upload_subtitle

async def extract_audio(client, message, data):
    await message.edit_text("Extracting Stream from file...")

    dwld_loc = data['location']
    out_loc = data['location'] + ".mp3"

    if data['name'] == "mp3":
        out, err, rcode, pid = await execute(f"ffmpeg -i '{dwld_loc}' -map 0:{data['map']} -c copy '{out_loc}' -y")
        if rcode != 0:
            await message.edit_text("**Error Occured. See Logs for more info.**")
            print(err)
            await clean_up(dwld_loc, out_loc)
            return
    else:
        out, err, rcode, pid = await execute(f"ffmpeg -i '{dwld_loc}' -map 0:{data['map']} '{out_loc}' -y")
        if rcode != 0:
            await message.edit_text("**Error Occured. See Logs for more info.**")
            print(err)
            await clean_up(dwld_loc, out_loc)
            return

    await clean_up(dwld_loc)
    await upload_audio(client, message, out_loc)


    


  • Revision f87e315e1e : Re-distribute hierarchical vector match pattern This commit modifies the hierar

    23 février 2015, par Jingning Han

    Changed Paths :
     Modify /vp9/encoder/vp9_encodeframe.c



    Re-distribute hierarchical vector match pattern

    This commit modifies the hierarchical vector match patter. It
    avoids repeated SAD computation at same points. The function
    vp9_vector_sad_sse2 is called 12 times per 64x64 block, instead
    of 15 times as before. The effective coverage remains the same.

    Change-Id : I91ad9d27d40db8963c907d02af84e10702136994