Recherche avancée

Médias (1)

Mot : - Tags -/ogg

Autres articles (40)

  • Selection of projects using MediaSPIP

    2 mai 2011, par

    The examples below are representative elements of MediaSPIP specific uses for specific projects.
    MediaSPIP farm @ Infini
    The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)

  • Sélection de projets utilisant MediaSPIP

    29 avril 2011, par

    Les exemples cités ci-dessous sont des éléments représentatifs d’usages spécifiques de MediaSPIP pour certains projets.
    Vous pensez avoir un site "remarquable" réalisé avec MediaSPIP ? Faites le nous savoir ici.
    Ferme MediaSPIP @ Infini
    L’Association Infini développe des activités d’accueil, de point d’accès internet, de formation, de conduite de projets innovants dans le domaine des Technologies de l’Information et de la Communication, et l’hébergement de sites. Elle joue en la matière un rôle unique (...)

  • Automated installation script of MediaSPIP

    25 avril 2011, par

    To overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
    You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
    The documentation of the use of this installation script is available here.
    The code of this (...)

Sur d’autres sites (4652)

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