Recherche avancée

Médias (1)

Mot : - Tags -/belgique

Autres articles (51)

  • 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 (...)

  • Dépôt de média et thèmes par FTP

    31 mai 2013, par

    L’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
    Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

Sur d’autres sites (3159)

  • avdevice/decklink_enc : Add support for compressed AC-3 output over SDI

    7 avril 2023, par Devin Heitmueller
    avdevice/decklink_enc : Add support for compressed AC-3 output over SDI
    

    Extend the decklink output to include support for compressed AC-3,
    encapsulated using the SMPTE ST 377:2015 standard.

    This functionality can be exercised by using the "copy" codec when
    the input audio stream is AC-3. For example :

    ./ffmpeg -i /foo.ts -codec:a copy -f decklink 'UltraStudio Mini Monitor'

    Note that the default behavior continues to be to do PCM output,
    which means without specifying the copy codec a stream containing
    AC-3 will be decoded and downmixed to stereo audio before output.

    Thanks to Marton Balint for providing feedback.

    Signed-off-by : Devin Heitmueller <dheitmueller@ltnglobal.com>
    Signed-off-by : Marton Balint <cus@passwd.hu>

    • [DH] libavdevice/decklink_enc.cpp
  • Revision 3129 : Un élément de menu menant vers l’inscription au site

    24 mars 2010, par kent1 — Log

    Un élément de menu menant vers l’inscription au site

  • os.walk returns file names but when trying to modify the files it says directory not found

    13 avril 2021, par epWILL

    Im trying to walk through music folder and find all sub folders in it and convert the mp4's in all folders to wav. It prints out the correct file name but when it trys to convert it says directory not found.

    &#xA;

    I would like to us os.walk to go through all folders instead going through 1 folder and changing the name in the code for the other folders

    &#xA;

    This code works for one folder

    &#xA;

    import os&#xA;import ffmpeg&#xA;import time&#xA;&#xA;path = &#x27;./musicTest/&#x27;&#xA;&#xA;&#xA;os.chdir(path)&#xA;aud_files = os.listdir()&#xA;count = 0&#xA;count2 = 0&#xA;&#xA;&#xA;    ##convert mp4 to wav&#xA;for file in aud_files:&#xA;    os.system(&#x27;ffmpeg -i "{}" -acodec pcm_s16le -ac 1 -ar 16000 output-{}.wav&#x27;.format(file, count))&#xA;    count = count &#x2B; 1&#xA;    os.remove(file)&#xA;

    &#xA;

    this is the code that gives me no directory found when using os.walk but it prints the file name

    &#xA;

    import os&#xA;from pydub import AudioSegment&#xA;import ffmpeg&#xA;&#xA;path = "./musicTest/"&#xA;count = 0&#xA;&#xA;for i, (root, dirs, files) in enumerate(os.walk(path)):&#xA;   if root is not path:&#xA;      for file in files:&#xA;           print(file)&#xA;           os.system(&#x27;ffmpeg -i "{}" -acodec pcm_s16le -ac 1 -ar 16000 output-{}.wav&#x27;.format(file, count))&#xA;           count = count &#x2B; 1&#xA;

    &#xA;