Recherche avancée

Médias (29)

Mot : - Tags -/Musique

Autres articles (107)

  • Changer son thème graphique

    22 février 2011, par

    Le thème graphique ne touche pas à la disposition à proprement dite des éléments dans la page. Il ne fait que modifier l’apparence des éléments.
    Le placement peut être modifié effectivement, mais cette modification n’est que visuelle et non pas au niveau de la représentation sémantique de la page.
    Modifier le thème graphique utilisé
    Pour modifier le thème graphique utilisé, il est nécessaire que le plugin zen-garden soit activé sur le site.
    Il suffit ensuite de se rendre dans l’espace de configuration du (...)

  • Demande de création d’un canal

    12 mars 2010, par

    En fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
    Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (9259)

  • Emscripten compiling multiple main functions

    20 février 2018, par AlexVestin

    I’ve been trying to compile FFmpeg using Emscripten to export to WebAssembly code. I’ve been using the ffmpeg.js Makefile here, with very slight modifications. The compilation works fine without any errors, and generates a ffmpeg.bc, however if I try to compile the file along with another C file containing a main function I get the error

    error: Linking globals named ´main´: symbol multiply defined!
    ERROR:root:Failed to run llvm optimizations:

    The command I’m using is :

    ffmpeg-wasm.js: (FFMPEG_MP4_BC)
       emcc test.c $(FFMPEG_MP4_BC) $(MP4_SHARED_DEPS) $(EMCC_COMMON_ARGS)

    where

    EMCC_COMMON_ARGS = \
       -s TOTAL_MEMORY=67108864 \
       -s OUTLINING_LIMIT=20000 \
       -O3 --memory-init-file 0 \
       -o $@ \
       -s WASM=1 \
       -I/usr/local/include

    I have tried using a different snapshot of ffmpeg, which didn’t fix the problem.

    If I run

    llvm-nm $(find . -name *.so) > log.txt && grep -n ./log.txt -e "int main"

    to test if any of the dependencies contain a main, I get nothing, however there is a global main function in the generated ffmpeg.bc.

    So, is there any way to remove the main function from the library, or some flag to set to prevent a global main function from being generated ?

  • avutil/common, macros : Move several macros from common.h to macros.h

    23 juillet 2021, par Andreas Rheinhardt
    avutil/common, macros : Move several macros from common.h to macros.h
    

    common.h currently contains several things : Math macros, UTF-8 macros,
    other fundamental macros ; furthermore it also contains miscellaneous
    math functions and it (directly and indirectly) includes lots of other
    headers.

    This commit moves the "other fundamental macros" to macros.h which is
    a more fitting place.

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

    • [DH] doc/APIchanges
    • [DH] libavutil/common.h
    • [DH] libavutil/macros.h
    • [DH] libavutil/version.h
  • ffmpeg transcode video from different sizes to 4:3

    26 novembre 2019, par NicholasRage

    We have some videos that have different scale and aspect ratio and we’d like to convert them to a fix 640x480 size (4/3 ar letterbox padding if necessary).
    Two sizes are occurs very often : 853 × 480, 1280 × 720.
    I made some research and tries before write this question but didn’t get the expected result.

    For example :

    ffmpeg -i video.mp4 -vf "scale=640:480,pad=640:480:(ow-iw)/2:(oh-ih)/2,setdar=4/3" -c:a copy output.mp4

    setdar=4/3 seems to required because if I omitted the result remain the original aspect ratio.

    Are there any solution for different size conversion ?