Recherche avancée

Médias (1)

Mot : - Tags -/ogg

Autres articles (16)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

  • D’autres logiciels intéressants

    12 avril 2011, par

    On ne revendique pas d’être les seuls à faire ce que l’on fait ... et on ne revendique surtout pas d’être les meilleurs non plus ... Ce que l’on fait, on essaie juste de le faire bien, et de mieux en mieux...
    La liste suivante correspond à des logiciels qui tendent peu ou prou à faire comme MediaSPIP ou que MediaSPIP tente peu ou prou à faire pareil, peu importe ...
    On ne les connais pas, on ne les a pas essayé, mais vous pouvez peut être y jeter un coup d’oeil.
    Videopress
    Site Internet : (...)

Sur d’autres sites (4184)

  • FFMPEG performance when reading directly from s3 vs local

    16 janvier 2020, par user1147070

    I have a usecase where I need to transcode a s3 file. I have two options

    Option a : Download the file to local, then run ffmpeg on it

    Option b : Provide a presigned URL as ffmpeg input eg -
    "./ffmpeg -loglevel debug -y -i "https://mybucket/key?signedParams" -threads 0 -map_chapters -1 -f mp4 -movflags faststart -map 0:0 -acodec libfdk_aac -ac 2 -ar 44100 -b:a 48k -sn -vn /output.mp4"

    I tried running both and comparing the time but I don’t see any much performance improvement in #b as compared to #a.

    I have 2 questions

    1. Is #b is better in performance than #a ? Or both of them are same ?

    2. In case of #b does ffmpeg wait for complete download and then start transcoding or it start downloading and transcoding simultaneously ?

  • Zip an audio file In NodeJS with archiver in fly

    31 juillet 2018, par dnp1204

    I use node-youtube-dl to have a stream to download a video and I want to convert it to mp3 using fluent-ffmmpeg. I also want to zip this mp3 audio to send to the client to download it but I cannot figure how to zip the mp3 audio. I find every corner of StackOverflow but I did not find any solution. Please help me ! Thanks

    const stream = youtubedl(url);
    const videoTitle = await youtube.getVideoTitle(url);
    const converter = new ffmpeg({ source: stream });
    const zip = archiver('zip');

    // This does not work since converter.toFormat('mp3') is not a stream
    zip.append(converter.toFormat('mp3'), {
     name: `${videoTitle}.${toFormat}`
    });
    zip.finalize();

    I really appreciate if you can help me ! Thanks again

  • How to use FFMPEG for Mac Apps

    9 avril 2015, par Andy Hin

    I’m building a Mac App that requires some features from FFMPEG. I want to package FFMPEG and distribute it along with my app such that it is not a dependency for the end user.

    I went here http://www.ffmpeg.org/download.html#build-mac and downloaded the 64-bit static binary. I extracted it using p7zip and I now have these 2 files : https://www.dropbox.com/s/r0frvxdpsr7jfti/Screenshot%202015-04-09%2012.28.25.png?dl=0

    How do I include the library in my xcode project ? How do I call the FFMPEG functions ?

    Any help appreciated.