Recherche avancée

Médias (39)

Mot : - Tags -/audio

Autres articles (58)

  • Qu’est ce qu’un éditorial

    21 juin 2013, par

    Ecrivez votre de point de vue dans un article. Celui-ci sera rangé dans une rubrique prévue à cet effet.
    Un éditorial est un article de type texte uniquement. Il a pour objectif de ranger les points de vue dans une rubrique dédiée. Un seul éditorial est placé à la une en page d’accueil. Pour consulter les précédents, consultez la rubrique dédiée.
    Vous pouvez personnaliser le formulaire de création d’un éditorial.
    Formulaire de création d’un éditorial Dans le cas d’un document de type éditorial, les (...)

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

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

Sur d’autres sites (7260)

  • avisynth : Cast to the right type when loading avisynth library functions

    24 novembre 2016, par Diego Biurrun
    avisynth : Cast to the right type when loading avisynth library functions
    

    Fixes a number of related warnings.

    • [DBH] libavformat/avisynth.c
  • How to convert a video file into images in c language with libavcodec library ? [on hold]

    25 juillet 2018, par emb-pro

    I am very new to these ffmpeg and libavcodec, I want to produce the images from a video file. I have researched through the internet, I got the resources from dranger’s tutorials. When I was trying to compile that code, I was getting deprecated warnings. I got the updated code from github. Even though I am facing the same problem. Again I got the code from ffmpeg. But it is asking me to provide the correct codec when I am executing.

    I am compiling using the command

    gcc -o tutorial01 tutorial01.c -lavutil -lavformat -lavcodec -lz -lm

    I have installed new versions of ffmpeg, libavcodec, libavformats and libavutilities libraries. I am using ubuntu 16.

    I can update the question if you need any information. Thanks in advance.

  • How do I copy ALL metadata from flac/mp3 to alac with ffmpeg ? -movflags isn't working, default just copies basic metadata

    24 juillet 2021, par Architekt

    I've spent 2 days now reasearching this and all the info I've found doesn't work. If I do this simple command :

    


    ffmpeg -i test.mp3 -y -vn -c:a alac /storage/test.m4a


    


    it copies the standard tags. The -vn is to disable copying album art, I've given up on that. It's easier to just separately use AtomicParsley to handle it because some of the album art isn't height divisble by 2.

    


    Problem is, I have extra custom tags that I need as well. Not necessarily for this particular track, but for all the vinyl I spent 2 months archiving. I've tried using the -movflags use_metadata_tags option but that didn't do anything. In fact, it completely prevented the copying of any metadata whatsoever. Here's the command I tried :

    


    ffmpeg -i test.mp3 -y -movflags use_metadata_tags -vn -c:a alac /storage/test.m4a


    


    On my Windows machine, if I use Foobar2000 and convert the same file to m4a, it copies ALL metadata, 100% to the resultant m4a file. Sadly, I need to do this from a linux command line, as part of an automation process. Both commands I've tried show output metadata equivalent to the input (sans cover art), so I'm not sure what that's about. In case it helps, here's the full screen output when I use that latter command with the -movflags tag. I'm going to use a pastebin link so as to not clutter this post with the verbose output.

    


    I've tried -map_metadata 0 as well, same results, but that's to be expected as from what I've read that just copies the global/standard tags. This must be possible, otherwise I have no idea how foobar2000 would be able to do it. I'd love to just use that, but alas, as stated, I have to do this on Linux command line for this particular situation.