Recherche avancée

Médias (91)

Autres articles (67)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • 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

  • Contribute to translation

    13 avril 2011

    You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
    To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
    MediaSPIP is currently available in French and English (...)

Sur d’autres sites (10101)

  • How can I convert all .webm files in a folder to .m4a or .mp3 ? [duplicate]

    8 mai 2021, par NimishP

    I have a folder filled with .webm and .m4a files.

    


    Is there a way, using either Windows Command Prompt or a Python script, to convert all of the .webm files to .m4a OR to convert all .webm files AND .m4a files to .mp3 files ?

    


    I've tried using FFmpeg, but that only works for single files.

    


    How would I use this to mass convert all of the .webm files to .m4a files in a given folder/directory, if possible ?
If not, is there another library I can use to do this ?

    


  • Revision e272273443 : Renames x86_64 specific asm files Renames all x86_64 specific assembly files to

    21 mai 2014, par Deb Mukherjee

    Changed Paths :
     Delete /vp8/common/x86/loopfilter_block_sse2.asm


     Add /vp8/common/x86/loopfilter_block_sse2_x86_64.asm
    (from /vp8/common/x86/loopfilter_block_sse2.asm
    :e39860be93bdb5c8ee6487ba7d6597f1b40fb4b7)
     Delete /vp8/encoder/x86/ssim_opt.asm


     Add /vp8/encoder/x86/ssim_opt_x86_64.asm
    (from /vp8/encoder/x86/ssim_opt.asm
    :e39860be93bdb5c8ee6487ba7d6597f1b40fb4b7)
     Modify /vp8/vp8_common.mk


     Modify /vp8/vp8cx.mk


     Delete /vp9/common/x86/vp9_idct_ssse3.asm


     Add /vp9/common/x86/vp9_idct_ssse3_x86_64.asm
    (from /vp9/common/x86/vp9_idct_ssse3.asm
    :e39860be93bdb5c8ee6487ba7d6597f1b40fb4b7)
     Delete /vp9/encoder/x86/vp9_dct_ssse3.asm


     Add /vp9/encoder/x86/vp9_dct_ssse3_x86_64.asm
    (from /vp9/encoder/x86/vp9_dct_ssse3.asm
    :e39860be93bdb5c8ee6487ba7d6597f1b40fb4b7)
     Delete /vp9/encoder/x86/vp9_quantize_ssse3.asm


     Add /vp9/encoder/x86/vp9_quantize_ssse3_x86_64.asm
    (from /vp9/encoder/x86/vp9_quantize_ssse3.asm
    :e39860be93bdb5c8ee6487ba7d6597f1b40fb4b7)
     Delete /vp9/encoder/x86/vp9_ssim_opt.asm


     Add /vp9/encoder/x86/vp9_ssim_opt_x86_64.asm
    (from /vp9/encoder/x86/vp9_ssim_opt.asm
    :e39860be93bdb5c8ee6487ba7d6597f1b40fb4b7)
     Modify /vp9/vp9_common.mk


     Modify /vp9/vp9cx.mk



    Renames x86_64 specific asm files

    Renames all x86_64 specific assembly files to consistently
    end in _x86_64.asm. This will be useful for build systems to
    handle these files differently.
    All new 64-bit specific assembly files should use the new
    naming convention.

    Change-Id : I36c89584967c82ffc4088b1b5044ac15d2bb7536

  • Converting MP3 files to WAV files using python

    20 février 2020, par Eden

    I am trying to convert an mp3 file to a wav file using python. Im using IDLE 3.7.4. I have pydub and Ffmpeg installed. I believe I have installed everything correctly yet am unsure of why my file won’t convert from mp3 to wav.. please help me

    input:

       from pydub import AudioSegment
       sound = AudioSegment.from_mp3("/Users/audio.mp3")
       sound.export("/Users/file.wav", format="wav")





    output:

    Warning (from warnings module):
     File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/pydub/utils.py", line 165
       warn("Couldn't find ffmpeg or avconv - defaulting to ffmpeg, but may not work", RuntimeWarning)
    RuntimeWarning: Couldn't find ffmpeg or avconv - defaulting to ffmpeg, but may not work

    Warning (from warnings module):
     File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/pydub/utils.py", line 193
       warn("Couldn't find ffprobe or avprobe - defaulting to ffprobe, but may not work", RuntimeWarning)
    RuntimeWarning: Couldn't find ffprobe or avprobe - defaulting to ffprobe, but may not work
    Traceback (most recent call last):
     File "/Users/pppla.py", line 2, in <module>
       sound = AudioSegment.from_mp3("/Users/audio.mp3")
     File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/pydub/audio_segment.py", line 716, in from_mp3
       return cls.from_file(file, 'mp3', parameters=parameters)
     File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/pydub/audio_segment.py", line 665, in from_file
       info = mediainfo_json(orig_file)
     File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/pydub/utils.py", line 263, in mediainfo_json
       res = Popen(command, stdin=stdin_parameter, stdout=PIPE, stderr=PIPE)
     File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/subprocess.py", line 775, in __init__
       restore_signals, start_new_session)
     File "/Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/subprocess.py", line 1522, in _execute_child
       raise child_exception_type(errno_num, err_msg, err_filename)
    FileNotFoundError: [Errno 2] No such file or directory: 'ffprobe': 'ffprobe'
    </module>