Recherche avancée

Médias (91)

Autres articles (111)

  • Script d’installation automatique de MediaSPIP

    25 avril 2011, par

    Afin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
    Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
    La documentation de l’utilisation du script d’installation (...)

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

  • Activation de l’inscription des visiteurs

    12 avril 2011, par

    Il est également possible d’activer l’inscription des visiteurs ce qui permettra à tout un chacun d’ouvrir soit même un compte sur le canal en question dans le cadre de projets ouverts par exemple.
    Pour ce faire, il suffit d’aller dans l’espace de configuration du site en choisissant le sous menus "Gestion des utilisateurs". Le premier formulaire visible correspond à cette fonctionnalité.
    Par défaut, MediaSPIP a créé lors de son initialisation un élément de menu dans le menu du haut de la page menant (...)

Sur d’autres sites (7107)

  • x264 Downsides of a high CRF (22) intermediary codec between conversions instead of lossless

    18 décembre 2019, par bobtheencoder

    I have a huge collection of video files that are in the range of CRF 16-20 taking up TB’s of space. The only need I have for these originals is that I have to encode them from time to time but the CRF of these final encodes is very low (CRF 26-28).

    I understand that a lossy to lossy converstion ALWAYS results in some quality loss but my question is what if the intermediate file is almost visually lossless compared to the final output.

    So to sum up, what quality difference should I expect from the following routes ?

    CRF 18 (original) -----> CRF 28 (final)
    CRF 18 (original) -----> CRF 22 (long-term storage) -----> Lossy  CRF 28 (final)
  • Link to ffmpeg libraries using mingw c++ -> undefined reference [duplicate]

    16 juillet 2016, par Gerhard

    This question already has an answer here :

    I read about a lot of very similar problems here, but none of them seems
    to solve my problem. I feel that I need only a very small step to succeed...

    I have an existing c++ project and try to include some FFmpeg functions.
    When linking with MinGW on Windows OS against the FFmpeg libraries, I get always
    the error message "undefined reference to...".

    I reduced my code totally to the following sample :

    // START of file simple.cpp
    #ifndef INT64_C
    #define INT64_C(c) (c ## LL)
    #define UINT64_C(c) (c ## ULL)
    #endif

    #include

    #include <libavutil></libavutil>opt.h>
    #include <libavcodec></libavcodec>avcodec.h>
    #include <libavutil></libavutil>channel_layout.h>
    #include <libavutil></libavutil>common.h>
    #include <libavutil></libavutil>imgutils.h>
    #include <libavutil></libavutil>mathematics.h>
    #include <libavutil></libavutil>samplefmt.h>

    int main(int argc, char **argv){
       avcodec_register_all();
       return 0;
    }
    // END of file simple.cpp

    I compile with :

    g++ -o simple.o -c simple.cpp -std=gnu++11

    which worked well.
    My link command is :

    g++ -o simple.exe simple.o -lavcodec -std=gnu++11

    and I get the error message :

    simple.o:simple.cpp:(.text+0xc): undefined reference to avcodec_register_all()

    So, at least the libraries are found ;-)
    I used the libraries directly from Zeranoe and I also managed to compile
    new ones from source. The error message is the same in both cases.

    A step to find the solution might be the following test (compile with gcc instead of g++) :

    1. I rename simple.cpp to simple.c

    2. I compile with :

      gcc -o simple.o -c simple.c

    3. I link with :

      g++ -o simple.o -c simple.c -lavcodec

    And that will work !!!

    But, unfortunately, that is no solution for me, because my main program
    is definitely c++ und must be compiled using g++.

    So, what the hell is wrong here ?
    Is that a FFmpeg topic or is that a gcc/g++ topic ?
    Please, all hints are welcome.

    I already tried out all possible ’extern’ and extern "C"- statements, no success.

  • ffmpeg bit_rate error - Android [duplicate]

    6 juin 2016, par Adroid Freak

    This question already has an answer here :

    I’m getting the following error "maybe incorrect parameters such as bit_rate, rate, width or height" in some android phones, what am I doing wrong ?

    /data/data/com.exampleapp.android/app_bin/ffmpeg -y -i /storage/emulated/0/example/test/recording.mp4 -af asetrate=9600*4/3 -strict -2 /storage/emulated/0/example/media/example/test.m4a
      libavutil      54.  7.100 / 54.  7.100
      libavcodec     56.  1.100 / 56.  1.100
      libavformat    56.  4.101 / 56.  4.101
      libavdevice    56.  0.100 / 56.  0.100
      libavfilter     5.  1.100 /  5.  1.100
      libswscale      3.  0.100 /  3.  0.100
      libswresample   1.  1.100 /  1.  1.100
      libpostproc    53.  0.100 / 53.  0.100
    Input #0, mov,mp4,m4a,3gp,3g2,mj2, from '/storage/emulated/0/example/test/recording.mp4':
      Metadata:
        major_brand     : isom
        minor_version   : 0
        compatible_brands: isom3gp4
        creation_time   : 2016-06-06 00:51:05
      Duration: 00:00:03.33, start: 0.000000, bitrate: 14 kb/s
        Stream #0:0(eng): Audio: aac (mp4a / 0x6134706D), 16000 Hz, mono, fltp, 12 kb/s (default)
        Metadata:
          creation_time   : 2016-06-06 00:51:05
          handler_name    : SoundHandle
    [aac @ 0x42136170] Too many bits per frame requested
    Output #0, ipod, to '/storage/emulated/0/example/media/example/test.m4a':
      Metadata:
        major_brand     : isom
        minor_version   : 0
        compatible_brands: isom3gp4
        Stream #0:0(eng): Audio: aac, 0 channels, 128 kb/s (default)
        Metadata:
          creation_time   : 2016-06-06 00:51:05
          handler_name    : SoundHandle
          encoder         : Lavc56.1.100 aac
    Stream mapping:
      Stream #0:0 -> #0:0 (aac (native) -> aac (native))
    Error while opening encoder for output stream #0:0 - maybe incorrect parameters such as bit_rate, rate, width or height
    exitValue 1