Recherche avancée

Médias (91)

Autres articles (98)

  • Taille des images et des logos définissables

    9 février 2011, par

    Dans beaucoup d’endroits du site, logos et images sont redimensionnées pour correspondre aux emplacements définis par les thèmes. L’ensemble des ces tailles pouvant changer d’un thème à un autre peuvent être définies directement dans le thème et éviter ainsi à l’utilisateur de devoir les configurer manuellement après avoir changé l’apparence de son site.
    Ces tailles d’images sont également disponibles dans la configuration spécifique de MediaSPIP Core. La taille maximale du logo du site en pixels, on permet (...)

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

Sur d’autres sites (9059)

  • I'm getting error while building the project in vue for ffmpeg.wasm

    2 avril, par EaBengaluru

    Hi i'm getting below error when i build the project with $npm run build command

    


    enter image description here

    


    I'm using vuetify "vuetify": "^2.4.0" still because 3.0 is still in beta so i'm using "vue": "^2.6.11",

    


    Here is my package.json

    


    {
   ....
   "dependencies": {
      "@ffmpeg/core": "^0.11.5",
      "@ffmpeg/ffmpeg": "^0.11.0",
      "core-js": "^3.6.5",
      "vue": "^2.6.11",
      "vue-router": "^3.5.3",
      "vuetify": "^2.4.0"
    },
    "devDependencies": {
      "@vue/cli-plugin-babel": "~4.5.0",
      "@vue/cli-plugin-eslint": "~4.5.0",
      "@vue/cli-service": "~4.5.0",
      "babel-eslint": "^10.1.0",
      "eslint": "^6.7.2",
      "eslint-plugin-vue": "^6.2.2",
      "sass": "~1.32.0",
      "sass-loader": "^10.0.0",
      "vue-cli-plugin-vuetify": "~2.4.5",
      "vue-template-compiler": "^2.6.11",
      "vuetify-loader": "^1.7.0"
    },
    "eslintConfig": {
      "root": true,
      "env": {
        "node": true
      },
      "extends": [
        "plugin:vue/essential",
        "eslint:recommended"
      ],
      "parserOptions": {
        "parser": "babel-eslint"
      },
      "rules": {}
    },
    "browserslist": [
      "> 1%",
      "last 2 versions",
      "not dead"
    ]
  }


    


    Note : it was working fine with "@ffmpeg/ffmpeg": "^0.10.1", when i updated it to "@ffmpeg/ffmpeg": "^0.11.0", it is not working

    


    in my vue.config.js there is nothing much , except transpileDependencies

    


    module.exports = {
  transpileDependencies: [
    'vuetify'
  ]
}


    


    Here is i have uploaded my project https://easyupload.io/rl9xyd [Download with high speed]

    


    Note : i want to use vuetify

    


    Question : i want to build with "@ffmpeg/core": "^0.11.0", "@ffmpeg/ffmpeg": "^0.11.5" and vuetify

    


    Please help me to resolve the error thanks in advance !!!

    


  • Xcode archive fails when building ffmpeg from unity [closed]

    19 septembre 2022, par Doron Kanaan

    I'm having a problem using mobile ffmpeg on ios via Unity.
I'm using this asset : Unity_Bind_2, and its supposed to include everything needed for ios builds. On android everything works fine, however when archiving from xcode, I'm getting the following errors :

    


    Reference to unresolved using decleration


    


    In the Chrono c++ class,

    


     Variable has incomplete type '__libcpp_timespec_t'


    


    in the __threading_support c++ class
And

    


    use of undeclared identifier 'nanosleep'


    


    in the __threading_support c++ class

    


    Does anyone have any lead ?
Thanks in advance !

    


  • Building ffmpeg example, trouble linking

    16 octobre 2022, par Expressingx

    I want to debug ffmpeg example, transcoding

    


    I've followed the compilation guide for ubuntu and everything is fine. Now I want to do some changes (e.g. opening actual camera) and had to add avdevice_register_all() function. Because of that now I cannot build it. The command for building is

    


    /usr/bin/gcc -fdiagnostics-color=always -g /home/myuser/ffmpeg_sources/ffmpeg/doc/examples/transcoding.c -L/home/myuser/ffmpeg_build/lib -I/home/myuser/ffmpeg_build/include -o /home/myuser/ffmpeg_sources/ffmpeg/doc/examples/transcoding -lX11 -lXext -lxcb-shm -lavdevice -lavformat -lavfilter -lavcodec -lswresample -lswscale -lavutil -lm -lx264 -lgnutls -lfdk-aac -lvdpau -lva -lz -lpostproc -lva-x11 -lva-drm -lxcb -lxcb-shape -lxcb-xfixes -lxcb-render -lasound -lsndio -lSDL2 -ldl -lbz2


    


    but I get one error

    


    /usr/bin/ld: /home/myuser/ffmpeg_build/lib/libavdevice.a(xv.o): undefined reference to symbol 'XGetWindowAttributes'
/usr/bin/ld: /usr/lib/gcc/x86_64-linux-gnu/12/../../../x86_64-linux-gnu/libX11.so: error adding symbols: DSO missing from command line


    


    What am I missing ?