Recherche avancée

Médias (16)

Mot : - Tags -/mp3

Autres articles (74)

  • Récupération d’informations sur le site maître à l’installation d’une instance

    26 novembre 2010, par

    Utilité
    Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
    Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...)

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

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

Sur d’autres sites (5704)

  • Merge mp3 files using FFmpeg on Android

    13 mai 2017, par Ali

    I am trying to merge two mp3 files using this command :

    ffmpeg -i "concat:/storage/emulated/0/Recordings/oneone.mp3|/storage/emulated/0/Recordings/twone.mp3" -c copy /storage/emulated/0/Recordings/concated.mp3

    but get this error :

    "concat:/storage/emulated/0/Recordings/oneone.mp3|/storage/emulated/0/Recordings/twone.mp3": No such file or directory

    Even though the both files exist in the directory. I have written this command according to the documentation : https://trac.ffmpeg.org/wiki/Concatenate#protocol

    How do I fix this ? Please help me.

  • ffmpeg : "invalid syntax" on file name ?

    26 novembre 2017, par Josh Flori

    I am trying to use this line of code in python :

    ffmpeg -i test.mp4 -vf fps=1 out%d.png

    per the documentation here https://trac.ffmpeg.org/wiki/Create%20a%20thumbnail%20image%20every%20X%20seconds%20of%20the%20video

    but python is giving me :

    File "<stdin>", line 1
    ffmpeg -i test.mp4 -vf fps=10 out%d.png
                ^
    SyntaxError: invalid syntax
    </stdin>

    I have imported ffmpeg and have my test.mp4 file exactly where I keep everything else python related. I have looked for a good while and am not sure what I am doing wrong, seems like it should be something simple ? Any ideas ?

    Thanks

  • FFMPEG Dash libvorbis page samples error

    9 mai 2015, par Brittel

    When using the guide http://wiki.webmproject.org/adaptive-streaming/instructions-to-playback-adaptive-webm-using-dash to encode several webm streams the audio stream is not correctly encoded by ffmpeg.

    ffmpeg -i input_audio.wav -c:a libvorbis -b:a 128k -vn -f webm -dash 1 audio_128k.webm

    When creating the manifest and loading the stream into ExoPlayer (but the same problem occurs in the reference javascript implementation dash.js), the error states :

    [...] SoftVorbis.cpp:314 CHECK_GE( inHeader->nFilledLen,sizeof(numPageSamples)) failed: 1 vs. 4

    The stream works flawlessly when not including the audio stream in the manifest.

    I’m using ffmpeg version 2.5.6-0ubuntu0.15.04.1

    Does anyone know what the problem might be ?