Recherche avancée

Médias (1)

Mot : - Tags -/getid3

Autres articles (23)

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

  • Contribute to translation

    13 avril 2011

    You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
    To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
    MediaSPIP is currently available in French and English (...)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

Sur d’autres sites (4080)

  • Announcing TMPGEnc 4 : now with x264 !

    26 novembre 2010, par Dark Shikari — commercial, japan, licensing, x264

    A few months ago, we announced a commercial licensing program so that even companies unable to use GPL software in their products have a chance to use the open source x264 instead of proprietary alternatives. The system worked on two basic concepts. First, all licensees would still be required to give their changes to x264 back to us : x264 must forever remain free, with no useful contributions kept hidden from the community. Second, all the profits would go directly back to x264, primarily to the developers who’ve made the most significant contributions to x264 over the years, but also to funding future development, bounties for new features, as well as contributing to other related projects (e.g. Videolan and ffmpeg).

    Over the past couple of months, we’ve gotten an enormous response ; over 40 companies have inquired about licensing, with more contacting us every day. Due to the sheer volume of interest, we’ve partnered with CoreCodec, the creators of the free Matroska container format and developers of CoreAVC, to make x264 as widely available as possible in the world of commercial software as it is in the world of open source. All of this is already filtering back to benefiting x264 users, with many bugs being reported by commercial licensees as well as some code contributed.

    Today, we announce the first commercial consumer encoding software to switch to x264 : Pegasys Inc.’s TMPGEnc. Expect many more to follow : with x264 now available commercially as well as freely, there are few excuses left to use any other H.264 encoder. Vendors of overpriced, underpowered proprietary competitors should begin looking for new jobs.

    (Pegasys press release : English, Japanese)

  • Limit the cpu usage when converting youtube videos to mp3 using youtube-dl

    30 novembre 2015, par Kamal

    I am using youtube-dl & avconv with php on nginx server to convert youtube video into mp3. Using htop I noticed the usage of cpus peak at 100% when couple of avconv processes are running at the same time, and once my server crushed down because of that.

    The first solution that I encountered cpulimit but after some research,I’ve found cpu limit is not smart enough to handle multiple simultaneous instances.

    From this answer I learned that I can limit the number of cpu threads using -threads option.
    My basic command : youtube-dl --extract-audio --audio-format mp3 <video url="url"></video>

    I wonder if I can add -threads option to the youtube-dl command, I am not sure if that is possible.

    I have 2 cores cpu server, I am thinking of upgrading to 4 cores cpu and limit the avconv to use just 2 cores, what do you think ? Is that the best way to go (using thread option) ?

  • How To Adjust Volume in An Audio Mix With Node Fluent-FFmpeg

    8 octobre 2015, par Alexander Perls

    I am using the node Fluent-FFmpeg library to mix together two audio files.

    My current code :

       var ffmpeg = require('fluent-ffmpeg');
       ffmpeg("/audioFileOne.wav")
               .input("/audioFileTwo.wav")
               .complexFilter('amix=duration=first')
               .audioFrequency(44100)
               .audioCodec('libmp3lame')
               .audioQuality(5)
               .output("/mixedFile.wav").run();
       }

    This works well. However, try as I might, I can’t figure out how to change the volume level of audioFileOne.wav before it is mixed with audioFileTwo.wav

    I am pretty sure I need to add something to this line

    .complexFilter('amix=duration=first')

    But I seem to be not smart enough to understand the ComplexFilter documentation on this page.

    If necessary I can provide some of the code that I have tried, but I don’t want to create more confusion.