Recherche avancée

Médias (0)

Mot : - Tags -/médias

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

Autres articles (37)

  • 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

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

Sur d’autres sites (4267)

  • 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;