Recherche avancée

Médias (1)

Mot : - Tags -/punk

Autres articles (106)

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

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • Mediabox : ouvrir les images dans l’espace maximal pour l’utilisateur

    8 février 2011, par

    La visualisation des images est restreinte par la largeur accordée par le design du site (dépendant du thème utilisé). Elles sont donc visibles sous un format réduit. Afin de profiter de l’ensemble de la place disponible sur l’écran de l’utilisateur, il est possible d’ajouter une fonctionnalité d’affichage de l’image dans une boite multimedia apparaissant au dessus du reste du contenu.
    Pour ce faire il est nécessaire d’installer le plugin "Mediabox".
    Configuration de la boite multimédia
    Dès (...)

Sur d’autres sites (17458)

  • avcodec symbols not found

    13 avril 2013, par seereen

    I am trying to build the example code in FFMPEG library
    I add the libavcode.h , libavcode.a in my project and I set the header search usr/local/include and the library search to usr/local/lib

    when I compile the example I got this errors ... ( all of them related to avcodec library)

    Undefined symbols:
    "avcodec_find_encoder(CodecID)", referenced from:
     video_encode_example(char const*, CodecID)in main.o
     "avcodec_open2(AVCodecContext*, AVCodec*, AVDictionary**)", referenced from:
     video_encode_example(char const*, CodecID)in main.o
     video_decode_example(char const*, char const*)in main.o
     "av_init_packet(AVPacket*)", referenced from:
     video_decode_example(char const*, char const*)in main.o
     "av_free(void*)", referenced from:
     video_encode_example(char const*, CodecID)in main.o
     video_encode_example(char const*, CodecID)in main.o
     video_encode_example(char const*, CodecID)in main.o
     video_decode_example(char const*, char const*)in main.o
     video_decode_example(char const*, char const*)in main.o
     "avcodec_alloc_context3(AVCodec*)", referenced from:
     video_encode_example(char const*, CodecID)in main.o
     video_decode_example(char const*, char const*)in main.o
     "av_opt_set(void*, char const*, char const*, int)", referenced from:
     video_encode_example(char const*, CodecID)in main.o
     "av_image_alloc(unsigned char**, int*, int, int, PixelFormat, int)", referenced from:
     video_encode_example(char const*, CodecID)in main.o
     "avcodec_encode_video(AVCodecContext*, unsigned char*, int, AVFrame const*)", referenced from:
     video_encode_example(char const*, CodecID)in main.o
     video_encode_example(char const*, CodecID)in main.o
     "avcodec_register_all()", referenced from:
     _main in main.o
     "avcodec_find_decoder(CodecID)", referenced from:
     video_decode_example(char const*, char const*)in main.o
     "avcodec_decode_video2(AVCodecContext*, AVFrame*, int*, AVPacket const*)", referenced from:
     video_decode_example(char const*, char const*)in main.o
     video_decode_example(char const*, char const*)in main.o
     "avcodec_close(AVCodecContext*)", referenced from:
     video_encode_example(char const*, CodecID)in main.o
     video_decode_example(char const*, char const*)in main.o
     "avcodec_alloc_frame()", referenced from:
     video_encode_example(char const*, CodecID)in main.o
     video_decode_example(char const*, char const*)in main.o
    ld: symbol(s) not found
    collect2: ld returned 1 exit status


    do you know why I got this problem ?

    Thanks

  • build : isolate sdl-to-sdl2 aliasing

    30 août 2017, par Clément Bœsch
    build : isolate sdl-to-sdl2 aliasing
    

    This simplifies incoming SDL related changes by removing potential
    mismatching states of sdl and sdl2 variables. Since a component can have
    all kind of states (such as unset, enabled, disabled or requested),
    keeping these variables in sync manually in random places is not robust.

    • [DH] configure
  • Mapping streams by language in FFmpeg

    6 décembre 2023, par ffmpeg123

    I have lots of files with multiple audio and subtitle languages, however the track numbers aren't consistent (the English audio stream isn't always the first) so using a command such as :

    


    ffmpeg -i "input.mkv" -map 0 -map -0:a:1 -c:v copy -c:a copy "output.mkv"


    


    doesn't yield expected results. After searching around I discovered it was possible to map streams based on language with this command :

    


    ffmpeg -i "input.mkv" -map 0 -map -0:m:language:eng -c:v copy -c:a copy "output.mkv"


    


    However -map -0:m:language:eng will remove all tracks with the English language flag. To keep the subtitle tracks you can use -map 0:s this is a good solution however, I want to know if it's possible to only map audio streams based on language. I.e.,

    


    I want to remove English audio while retaining all other streams without using stream IDs.