Recherche avancée

Médias (1)

Mot : - Tags -/Rennes

Autres articles (47)

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

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

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

Sur d’autres sites (9125)

  • avcodec/wmavoice : Check sample_rate

    23 octobre 2019, par Michael Niedermayer
    avcodec/wmavoice : Check sample_rate
    

    Fixes : left shift of 538976288 by 8 places cannot be represented in type 'int'
    Fixes : 18376/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_WMAVOICE_fuzzer-5741645391200256

    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/wmavoice.c
  • avcodec/exr : fix undefined shift in pxr24_uncompress()

    4 novembre 2017, par Michael Niedermayer
    avcodec/exr : fix undefined shift in pxr24_uncompress()
    

    Fixes : runtime error : left shift of 255 by 24 places cannot be represented in type 'int'
    Fixes : 3787/clusterfuzz-testcase-minimized-5728764920070144

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

    • [DH] libavcodec/exr.c
  • ffmpeg modify audio length/size ( stretch or shrink)

    24 janvier 2024, par mido

    I am developing a web app, where people can record videos. I have been able to send chunks of audio n video to server successfully, where I am trying to combine them and return as single proper file.

    &#xA;&#xA;

    my problem is if the recording is for one hour, after merging the chunks

    &#xA;&#xA;

    video length : 1:00:00 , audio length : 00:59:30,

    &#xA;&#xA;

    now, this is not a issue of audio not getting recorded( I have checked that), the problem is, somehow, when i merge the chunks of audio, it shrinks,

    &#xA;&#xA;

    &#xA;

    I find that it is progressive sync issue where it gets worse and worse as time increases.

    &#xA;

    &#xA;&#xA;

    I have searched the net for the solution, most places say async, I have tried using it, but to no avail, is the below usage correct ?

    &#xA;&#xA;

    ffmpeg  -i audio.wav -async 1 -i video.webm -y -strict -2 v.mp4

    &#xA;&#xA;

    (v.mp4 is the final file that I provide to the users.)

    &#xA;