Recherche avancée

Médias (2)

Mot : - Tags -/kml

Autres articles (40)

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

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

Sur d’autres sites (6851)

  • How to convert ogg or mp3 file in wav without using ffmpeg

    3 août 2023, par Maksim Palchevski

    I have problems with installing ffmpeg and ffprobe that's why I am looking for ways to avoid them

    


    I have tried to ask neurolinks and even looked in Internet, but it is might to be impossible to install ffmpeg on that os that i have (nix os). So, i have tried to avoid it, but haven't found any solutions. Here is my code :

    


    from pydub import AudioSegment
def convert_audio_to_wav(input_file, output_file):
    # Читаем аудиофайл с помощью pydub
    x = AudioSegment.from_file(input_file)
    x.export(output_file, format='wav') 


    


    And it returns an error :

    


    [Errno 2] No such file or directory: 'ffprobe'


    


  • ffmpeg convert 4K file to 1080p mp4 file

    16 septembre 2015, par Hüseyin GÖZE

    i’m using ffmpeg to converting video in windows service, when i’m trying to converting 4K video to 1080p ffmpeg returns error like this :

    libvo_aacenc Stream mapping : Stream #0:0 -> #0:0 (h264 (native) ->
    h264 (libx264)) Stream #0:2 -> #0:1 (ac3 (native) -> aac
    (libvo_aacenc)) Error while opening encoder for output stream #0:1 -
    maybe incorrect parameters such as bit_rate, rate, width or height

    my ffmpeg convert command like this :

    ffmpeg -i 4k2.mp4 -vf scale=1920:1080 -threads 3 4k2_1080.mp4

    what’s wrong with this ?

  • (ffmpeg) : Failed to read frame size : Could not seek to 1026

    24 mai 2021, par UserUNP

    I was trying to convert Midi files to Mp3 files using timidity and ffmpeg
using this command

    


    python -m timidity play.mid -Ow -o - | ffmpeg -i - -acodec libmp3lame -ab 64k play.mp3


    


    so I can use it in my Discord bot, but whenever I execute the command, it always returns this error that I couldn't understand

    


    [mp3 @ 0x56226d7e0440] Format mp3 detected only with low score of 1, misdetection possible!
[mp3 @ 0x56226d7e0440] Failed to read frame size: Could not seek to 1026.
play.mp3: Invalid argument


    


    If you have any idea to what this means or how can I fix it then please give me an Answer, thanks !