Recherche avancée

Médias (1)

Mot : - Tags -/net art

Autres articles (41)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

  • Demande de création d’un canal

    12 mars 2010, par

    En fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
    Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...)

Sur d’autres sites (8638)

  • avcodec/ralf : use multiply instead of shift to avoid undefined behavior in decode_block()

    2 novembre 2019, par Michael Niedermayer
    avcodec/ralf : use multiply instead of shift to avoid undefined behavior in decode_block()
    

    Fixes : left shift of negative value -249
    Fixes : 18566/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_RALF_fuzzer-5649394561187840

    Found-by : continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/ralf.c
  • How to increase the speed of the FFMPEG output to S3 bucket

    21 novembre 2020, par kmrinmoy07

    I am using ffmpeg to convert audio into different qualities using ffmpeg and then store the output into S3 bucket. But i saw that the rate of completion of the work is very slow as compared to completion of work into local storage directory in my server.

    &#xA;

    Here is my Ffmpeg command -

    &#xA;

        ffmpeg -i input.mp3 -ab 96k -f mp3 pipe:1 | aws s3 cp - s3://mybucket/output.mp3&#xA;

    &#xA;

    Can you please help me to increase the speed of the completion of work.

    &#xA;

  • (Solved) ffmpeg conversion increase bitrate

    9 novembre 2017, par user3386373

    When extracting Audio streams using ffmpeg from containers such as MP4, how does ffmpeg increase bitrate, if it is higher than the source bitrate ?

    An example might be ffmpeg -i video.mp4 -f mp3 -ab 256000 -vn music.mp3. What does ffmpeg do if the incoming bitrate is 128k ? Does it interpolate or default to 128k on the output music.mp3 ? I know this seems like not a so-called "programming question" but ffmpeg forum says it is going out of business and no one will reply to posts there.