Recherche avancée

Médias (1)

Mot : - Tags -/Christian Nold

Autres articles (73)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

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

  • Select song sample rate

    22 avril 2022, par Clamarc

    I have a folder with several mp3's and I needed to separate (copy) all the 4800 hz sample rate files to another folder.

    


    I have a folder "General Audios" and I created another one called "Audios 48000 sample rate"

    


    I'm running the ffprobe command that returns the sample rate value of each song.. but when I try to save the value in a string to be able to use the IF and copy only the ones with 48000 hz, I get a message that the command is a command input ? what is wrong ?

    


    md "C:\Users\%username%\Desktop\Áudios 48000 sample rate"

cd /d "C:\Users\%username%\Desktop\Áudios Gerais"

for %%F IN (*) do (
   ffprobe -i "%%F" -v error -show_entries stream=sample_rate ˆ
       -of default=noprint_wrappers=1:nokey=1 set %%S if %%S==48000 ˆ
          "C:\Users\%username%\Desktop\Áudios 48000 sample rate\%%F"
   )

pause


    


    EDITED :
I have no more code, this is the only one, I run the ffprobe command in a folder and I select the ones that have 48000Hz to copy to another folder, that's all !?!?

    


  • FFMPEG h264_videotoolbox change bit rate

    11 janvier 2019, par Chen Yang

    I want to use h264_videotoolbox encoder but i find that i couldn’t change bit rate dynamically.
    FFmpeg copies bit rate number and set that to toolbox session in init process, i think.

    bit_rate_num = CFNumberCreate(kCFAllocatorDefault,
                                 kCFNumberSInt32Type,
                                 &bit_rate);
    if (!bit_rate_num) return AVERROR(ENOMEM);

    status = VTSessionSetProperty(vtctx->session,
                                 kVTCompressionPropertyKey_AverageBitRate,
                                 bit_rate_num);
    CFRelease(bit_rate_num);

    Do you guys know any way to do it ?

  • ffmpeg bit rate

    13 juillet 2012, par user1522872

    I am transcoding a video using FFMPEG API in c code.
    I am trying to set the video bit rate using the ffmpeg API as shown below :

    ovCodecCtx->bit_rate = 100 * 1000;

    The Encoder I am using is libx264.

    But this parameter is not taken into effect and the resulting video quality is very bad.
    I have even tried setting related parameters like rc_min_rate, rc_max_rate, etc.. but the video quality is still very low as these related parameters are not taken into effect.

    Could any expert tell how one can set the bit rate correctly using the FFMPEG API ?
    Thanks