Recherche avancée

Médias (2)

Mot : - Tags -/plugins

Autres articles (97)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

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

  • MLT melt slideshow on Windows : unable to control output video length and problems with using wildcards

    10 novembre 2020, par Tjk

    I am using the following command within a batch script to, hopefully, eventually programmatically create simple video slideshows with transitions :

    


    melt 131.jpg 132.jpg 133.jpg ttl=75 -attach crop center=1 -filter luma cycle=75 duration=25 -transition mix -consumer avformat:out.mp4 frame_rate_num=30 frame_rate_den=1


    


    Most of this command is an adaptation for Windows of this command on the MLT website blog (with the exception of the part that scales and transforms the image). For some reason when I run this, however, the output video file is 25 minutes long !

    


    I have two main questions :

    


    a. How do I properly control the duration of each image in the video ? I have experimented quite a bit with changing the parameters and I have a semi-decent understanding of what they all mean (I am a newbie to MLT but I figured that there's no way to do something like this easily in FFMPEG alone). The only way I have found to decrease the duration with any amount of control is to increase the output framerate to absurd numbers (which, of course, is not ideal as it's a massive waste of time and energy and still doesn't really solve the issue).

    


    b. How do I use a wildcard to input all the .jpg files in a folder on Windows ? I tried adding *.jpg but that didn't work and I don't know how else to do it within a batch script (I tried using the following code to get the file names as a variable, but I wasn't able to get string concatenation working correctly because it only outputs the final file name)

    


    set files=
for /r %%i in (*.jpg) do (
    echo %%i
    set files=%files% "%%i"
)
echo %files%


    


    Thank you for any suggestions !

    


  • avcodec/aacenc : add strict bit rate control option

    25 avril 2023, par Jeremy Wu
    avcodec/aacenc : add strict bit rate control option
    

    In certain use cases, controlling the maximum frame size is critical. An
    example is when transmitting AAC packets over Bluetooth A2DP.

    While the spec allows the packets to be fragmented (but UNRECOMMENDED),
    in practice most headsets do not recognize nor reassemble such packets.

    In this patch, we allow setting `bit_rate_tolerance` to 0 to indicate
    that the specified bit rate should be treated as an upper bound up to
    frame level.

    Signed-off-by : Jeremy Wu <jrwu@chromium.org>

    • [DH] libavcodec/aacenc.c
    • [DH] libavcodec/options_table.h
  • Revision 6ec0ef6691 : Add a guard on intra mode skip control for RTC mode This commit adds a guard co

    18 décembre 2014, par Jingning Han

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



    Add a guard on intra mode skip control for RTC mode

    This commit adds a guard condition to the intra mode test skip
    control in RTC coding mode. If all inter modes are skipped, force
    the encoder to check intra mode. It avoids situations where the
    encoder processes without properly assigning required mode
    information.

    Change-Id : Ibb349fee997d6584ce901d08b06e8df3ca9c01b1