Recherche avancée

Médias (0)

Mot : - Tags -/diogene

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (90)

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

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

Sur d’autres sites (7380)

  • How to add support of v360 filter in ffmpeg ?

    19 juin 2020, par Sandip Ukani

    How to add support of v360 filter in ffmpeg ? I have source code of ffmpeg 4.1 version and want create executable finery of "ffmpeg".

    



    I am getting an error for : ./ffmpeg -i 192.168.10.125-00000-00060-1592292229.mp4 -vf v360=dfisheye:e:yaw=-90 -c:v libx264 -b:v 40000k -bufsize 5000k -preset ultrafast -c:a copy out.mp4

    



    Getting an error :
Press [q] to stop, [?] for help
[AVFilterGraph @ 0x36fa2c0] No such filter : 'v360'
Error reinitializing filters !
Failed to inject frame into filter network : Invalid argument
Error while processing the decoded data for stream #0:0

    


  • fate : simplify filter-pp tests

    28 mars 2015, par Michael Niedermayer
    fate : simplify filter-pp tests
    

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] tests/fate/filter-video.mak
  • How to use scale filter in doc/examples/transcoding.c

    19 janvier 2018, par siods333333

    I tried to replace the "null" filter with the "scale=320x180" filter in the doc/examples/transcoding.c file, it only resulted into the this error message :

    [libx264 @ 03303ee0] Input picture width (640) is greater than stride (256)
    Error occurred: Generic error in an external library

    What is wrong ? Look that init_filters happens after open_output_file, the encoder is already set before it even knows the resolution of the output.

    How to do this properly ?

    Look at this piece of code, I don’t get what it’s talking about, fiters ain’t going to magically set the correct resolution :

           /* In this example, we transcode to same properties (picture size,
            * sample rate etc.). These properties can be changed for output
            * streams easily using filters */
           if (dec_ctx->codec_type == AVMEDIA_TYPE_VIDEO) {
               enc_ctx->height = dec_ctx->height;
               enc_ctx->width = dec_ctx->width;

    Found this in the ffmpeg.c itself :

       enc_ctx->width  = av_buffersink_get_w(ost->filter->filter);
       enc_ctx->height = av_buffersink_get_h(ost->filter->filter);