Recherche avancée

Médias (0)

Mot : - Tags -/presse-papier

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (38)

  • Qu’est ce qu’un éditorial

    21 juin 2013, par

    Ecrivez votre de point de vue dans un article. Celui-ci sera rangé dans une rubrique prévue à cet effet.
    Un éditorial est un article de type texte uniquement. Il a pour objectif de ranger les points de vue dans une rubrique dédiée. Un seul éditorial est placé à la une en page d’accueil. Pour consulter les précédents, consultez la rubrique dédiée.
    Vous pouvez personnaliser le formulaire de création d’un éditorial.
    Formulaire de création d’un éditorial Dans le cas d’un document de type éditorial, les (...)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

Sur d’autres sites (3855)

  • avdevice/dshow : fix print format for some variables

    12 novembre 2021, par James Almer
    avdevice/dshow : fix print format for some variables
    

    WAVEFORMATEX.nChannels and WAVEFORMATEX.wBitsPerSample are of type WORD, aka
    unsigned short.

    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavdevice/dshow.c
  • include a string variable that contains spaces into the 'subprocess.run()' [duplicate]

    9 juillet 2022, par zayn

    I'm trying to combine a video and it's audio into one file using ffmpeg using subprocess in python and I want to do something like this.

    &#xA;

    name = &#x27;spider man.mp4&#x27;&#xA;&#xA;subprocess.run("ffmpeg -i " &#x2B; &#x27;temp\\vid.mp4&#x27; &#x2B; " -i "&#x2B; &#x27;temp\\aud.mp4&#x27; &#x2B; " -c copy " &#x2B; path&#x2B;&#x27;\\&#x27;&#x2B;name)&#xA;&#xA;

    &#xA;

    "name" is the name concatenated with the extension of the resulting file but as you see, "name" contains spaces so when I pass it to the subprocess it takes the first word only which is (spider), so he don't find the extension of the resulting file and it give this error

    &#xA;

    Unable to find a suitable output format for &#x27;C:\Users\Zain\Downloads\spider&#x27;&#xA;C:\Users\Zain\Downloads\spider: Invalid argument&#xA;&#xA;

    &#xA;

  • Splitting audio by vocal / voice

    1er octobre 2020, par ML85

    I am working with audio file using webrtcvad and pydub. The split of any fragment is by silence of the sentence.&#xA;Is there any way by which the split can be done at each vocal (after each spoken word) ?&#xA;If librosa/ffmpeg/pydub has any feature like this, can split is possible at each vocal ? but after split, I need start and end time of the vocal exactly what that vocal part has positioned in the original file.&#xA;One simple solution or way to split by ffmpeg is also defined by :

    &#xA;

    https://gist.github.com/vadimkantorov/00bf4fbe4323360722e3d2220cc2915e

    &#xA;

    but this is also splitting by silence, and with each padding number or the frame size, the split is different. I am trying split by vocal.

    &#xA;