Recherche avancée

Médias (1)

Mot : - Tags -/Christian Nold

Autres articles (59)

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 is the first MediaSPIP stable release.
    Its official release date is June 21, 2013 and is announced here.
    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 (...)

Sur d’autres sites (12465)

  • Anomalie #4363 : mot de passe vide bloque le formulaire de réinitialisation du mot de passe d’un u...

    9 août 2019, par Fil _

    RastaPopoulos ♥ a écrit :

    si tel auteur est juste une signature, alors il n’a pas de d’email non plus

    non : on peut très bien avoir stocké l’email dans le but de faire fonctionner un formulaire ecrire auteur…

    Donc à partir du moment où il y a bien un email, on devrait pouvoir faire un rappel de mot de passe et alors en définir un nouveau, peu importe qu’il y ait déjà un mot de passe ou pas.

    (Et moi j’ajouterais : et même s’il n’y a pas de login, vu que l’email permet aussi de se loguer, mais bon c’est encore une autre décision.)

    ah non encore moins.

    le cas où il y aurait un login et pas de mot de passe est sans doute moins problématique — j’essaie de me rappeler si on n’a pas ça sur un des sites, mais je vois pas où

    En tout cas s’il y a changement, il faudrait une alerte (par ex un email au webmestre) qui signale les comptes qui pourraient potentiellement être "ressuscités" par cette technique, le cas échéant.

  • Process vide files to take screen grabs in java spring boot

    10 octobre 2023, par Haleema Khan

    I am using JavaCV library with ffmpeg bindings to process video files and taking screen grabs at specific frames.
Adding JavaCV library dependency to my spring project increases the size of my jar file from around 90Mb > 1+ Gb.
This is a big issue becuase my project is deployed on AWS elastic beanstalk that accepts a max size of 500 Mb for a jar file.

    


    Need help to resolve this issue with the jar file or else any other alternate library that could do this.

    


    What I tried : I have removed all accept the abosultely necessary dependencies in my project to reduce the jar size.
I have also tried to find alternate solutions but couldnt get anything.
My pom file looks like

    


    <dependencies>&#xA;        &#xA;        <dependency>&#xA;            <groupid>org.springframework.boot</groupid>&#xA;            <artifactid>spring-boot-starter-data-jpa</artifactid>&#xA;        </dependency>&#xA;        <dependency>&#xA;            <groupid>com.google.oauth-client</groupid>&#xA;            <artifactid>google-oauth-client</artifactid>&#xA;            <version>1.32.1</version>&#xA;        </dependency>&#xA;        <dependency>&#xA;            <groupid>com.google.http-client</groupid>&#xA;            <artifactid>google-http-client</artifactid>&#xA;            <version>1.32.1</version>&#xA;        </dependency>&#xA;        &#xA;        <dependency>&#xA;            <groupid>org.springframework.boot</groupid>&#xA;            <artifactid>spring-boot-starter-oauth2-client</artifactid>&#xA;        </dependency>&#xA;        <dependency>&#xA;            <groupid>org.springframework.boot</groupid>&#xA;            <artifactid>spring-boot-starter-web</artifactid>&#xA;        </dependency>&#xA;        <dependency>&#xA;            <groupid>org.springframework.boot</groupid>&#xA;            <artifactid>spring-boot-starter-test</artifactid>&#xA;            <scope>test</scope>&#xA;        </dependency>&#xA;        &#xA;        <dependency>&#xA;            <groupid>org.bytedeco</groupid>&#xA;            <artifactid>javacv</artifactid>&#xA;            <version>1.5.9</version>&#xA;        </dependency>&#xA;        <dependency>&#xA;            <groupid>org.springframework.boot</groupid>&#xA;            <artifactid>spring-boot-starter-validation</artifactid>&#xA;        </dependency>&#xA;        <dependency>&#xA;            <groupid>org.apache.commons</groupid>&#xA;            <artifactid>commons-csv</artifactid>&#xA;            <version>1.10.0</version>&#xA;        </dependency>&#xA;        <dependency>&#xA;            <groupid>io.jsonwebtoken</groupid>&#xA;            <artifactid>jjwt</artifactid>&#xA;            <version>0.9.1</version>&#xA;        </dependency>&#xA;        &#xA;        <dependency>&#xA;            <groupid>mysql</groupid>&#xA;            <artifactid>mysql-connector-java</artifactid>&#xA;        </dependency>&#xA;        <dependency>&#xA;            <groupid>org.springframework.boot</groupid>&#xA;            <artifactid>spring-boot-devtools</artifactid>&#xA;        </dependency>&#xA;        <dependency>&#xA;            <groupid>org.projectlombok</groupid>&#xA;            <artifactid>lombok</artifactid>&#xA;        </dependency>&#xA;        <dependency>&#xA;            <groupid>org.springframework.boot</groupid>&#xA;            <artifactid>spring-boot-configuration-processor</artifactid>&#xA;            <optional>true</optional>&#xA;        </dependency>&#xA;        <dependency>&#xA;            <groupid>com.amazonaws</groupid>&#xA;            <artifactid>aws-java-sdk-s3</artifactid>&#xA;            <version>1.12.550</version>&#xA;        </dependency>&#xA;        &#xA;        <dependency>&#xA;            <groupid>commons-io</groupid>&#xA;            <artifactid>commons-io</artifactid>&#xA;            <version>2.6</version>&#xA;        </dependency>&#xA;        &#xA;        &#xA;        &#xA;        <dependency>&#xA;            <groupid>com.github.ozlerhakan</groupid>&#xA;            <artifactid>poiji</artifactid>&#xA;            <version>3.0.3</version>&#xA;        </dependency>&#xA;        <dependency>&#xA;            <groupid>org.springframework.cloud</groupid>&#xA;            <artifactid>spring-cloud-starter-aws</artifactid>&#xA;            <version>2.2.6.RELEASE</version>&#xA;        </dependency>&#xA;        <dependency>&#xA;            <groupid>org.springframework.cloud</groupid>&#xA;            <artifactid>spring-cloud-starter-aws-messaging</artifactid>&#xA;            <version>2.2.6.RELEASE</version>&#xA;        </dependency>&#xA;    </dependencies>```&#xA;

    &#xA;

  • avcodec/vc2enc : Simplify writing dirac golomb codes

    8 mars, par Andreas Rheinhardt
    avcodec/vc2enc : Simplify writing dirac golomb codes
    

    The earlier code used a loop to determine the number of bits used
    and called ff_log2() on a power of two (and it would be easy to
    keep track of the exponent of said power-of-two) ; neither GCC nor
    Clang optimized the loop away or avoided the ff_log2().
    This patch replaces the loop and the log2 with a single av_log2().

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavcodec/vc2enc.c