Recherche avancée

Médias (1)

Mot : - Tags -/pirate bay

Autres articles (101)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

Sur d’autres sites (11595)

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

  • 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

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