Recherche avancée

Médias (91)

Autres articles (65)

  • Pas question de marché, de cloud etc...

    10 avril 2011

    Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
    sur le web 2.0 et dans les entreprises qui en vivent.
    Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
    Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
    le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
    Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...)

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

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

Sur d’autres sites (11139)

  • Convert WAV to FLAC or ALAC whilst preserving/converting id3 tags [closed]

    28 mars 2023, par Jai_1008

    Basically I want to render my mastered audio out of Wavelab, (the industry standard for mastering music) and then be able to have my track added to the macOS Music app with all metadata already included.

    


    It's more complicated than this, but basically Wavelab only gives serious metadata options to its WAV output. If I render out as FLAC, which, as a format, has better metadata implementation than WAV files, the metadata options I have avialable in Wavelab are not as good/extensive.

    


    So to get the metadata I want, I have to render as WAV. But then I can't put that in Apple Music app whilst keeping it's id3 tags. All the fields like Artist etc are blank in the Music app.

    


    The Music app DOES recognise the metadata from an ALAC file. So I have to convert a WAV to ALAC (or FLAC as converting FLAC to ALAC is easy) whilst somehow preserving its metadata. And for the life of me, I cannot find an answer to this from searching and reading everything.

    


    Any help ? I was looking into ffmpeg as an option, but no one speaks to this specific situation of mine. Converting WAV to FLAC or ALAC and preserving the WAVs metadata (id3 tags).

    


    I've tried using -map_metadata 0 when converting a WAV to FLAC in ffmpeg, but ffmpeg says it's ignoring ID3 tags because it found more suitable metadata. But the resulting FLAC only has Artist and copyright fields included in its metadata.

    


  • lavfi/vf_libplacebo : generalize frame update to multiple inputs

    15 juin 2023, par Niklas Haas
    lavfi/vf_libplacebo : generalize frame update to multiple inputs
    

    In the event that some frame mixes are OK while others are not, the
    priority goes :

    1. Errors in updating any frame -> return error
    2. Any input incomplete -> request frames and return
    3. Any inputs OK -> ignore EOF streams and render remaining inputs
    4. No inputs OK -> set output to most recent status

    This logic ensures that we can continue rendering the remaining streams,
    no matter which streams reach their end of life, until we have no
    streams left at which point we forward the last EOF.

    • [DH] libavfilter/vf_libplacebo.c
  • How to ask FFMPEG to trim a video from start up to the end where there are no changes in frames ? [closed]

    27 août 2023, par jtrner

    I got a copy of our training module videos but these are desktop screen recorded. There are some videos where it supposed to end up to the length of the video, say 00:45:00, but because the "screen recorder" was not stopped (probably the person recording it left the computer) so there are added static frames towards the end (like 5 to 30 mins) and making the videos longer and file sizes bigger than it should be. So instead to end at 00:45:00, the video end timestap would be like say, 00:59:00.

    


    So how would I ask ffmpeg to "trim" the videos up to the part where the frames stopped and no changes at all ? And I also like to have a buffer of like 10 seconds after the supposedly end of the video, just to make sure that ffmpeg correctly detects the segments where the frames stopped.

    


    I'm only familiar with the video timming but don't have any idea on what filter to use to detect frame changes on videos using ffmpeg.