Recherche avancée

Médias (1)

Mot : - Tags -/artwork

Autres articles (69)

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

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

Sur d’autres sites (6760)

  • Ffmpeg change audio file bitrate and pass the output to pipe

    11 novembre 2020, par kmrinmoy07

    I used to change the bitrate of audio files by using

    


      ffmpeg -i input.mp3 -ab 96k output.mp3


    


    and it works perfectly. Now I want to pass the output as pipe in Ffmpeg and perform some other task. I have took the reference of this documentation and modified the above ffmpeg command into

    


    ffmpeg -i input.mp3 -ab 96k pipe:1 | aws s3 cp - s3://mybucket/output.mp3


    


    But this doesn't work.
Only if i use pipe as below then it works.

    


    ffmpeg -i input.mp3 -f mp3 pipe:1 | aws s3 cp - s3://mybucket/output.mp3


    


    But this doesn't change the bitrate of the audio. Can anyone please help me how can I achieve my target of changing the bitrate and passing the output as Pipe

    


  • Revision 50bf8fd4f5 : Enables alt-ref frames in one pass mode Includes a few fixes and clean-ups that

    23 janvier 2014, par Deb Mukherjee

    Changed Paths :
     Modify /vp9/encoder/vp9_firstpass.c


     Modify /vp9/encoder/vp9_lookahead.c


     Modify /vp9/encoder/vp9_onyx_if.c


     Modify /vp9/encoder/vp9_ratectrl.c


     Modify /vp9/encoder/vp9_temporal_filter.c


     Modify /vp9/encoder/vp9_temporal_filter.h



    Enables alt-ref frames in one pass mode

    Includes a few fixes and clean-ups that adds the ability
    to use alt-ref frames in one-pass mode.
    Whether alt-refs are actually used or not is controlled by a
    macro USE_ALTREF_FOR_ONE_PASS in vp9_firstpass.c.

    This first cut seems to improve derf by 15+% in 1-pass mode.
    But further experiments with parameters are underway.

    Change-Id : I78254421435478003367c788c7930d2dc4ee2816

  • Revision 8d363882fd : Choosing GOOD mode by default. This patch fixes slow first pass problem. Mode c

    23 août 2014, par Dmitry Kovalev

    Changed Paths :
     Modify /vp9/vp9_cx_iface.c



    Choosing GOOD mode by default.

    This patch fixes slow first pass problem. Mode could only be determined
    from the deadline value during frame encode call. Unfortunately, we use
    mode value before any encode calls during the first pass encoding (see
    set_speed_features() logic). The mode for the first pass must be different
    from BEST to make first pass fast.

    Change-Id : I562a7d32004ff631695d91c09a44d8a9076fd6b5