Recherche avancée

Médias (29)

Mot : - Tags -/Musique

Autres articles (102)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

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

Sur d’autres sites (16484)

  • avfilter/vf_chromanr : split inner loops

    6 décembre 2022, par Paul B Mahol
    avfilter/vf_chromanr : split inner loops
    

    Makes overall faster processing in default case.

    • [DH] libavfilter/vf_chromanr.c
  • Is it possible to split frame accurate an AAC file using FFmpeg ?

    12 mai 2019, par CAHbKA

    What I did :

    # create source material
    ffmpeg -y -i some.file -c:a libfdk_aac -profile:a aac_he -b:a 128k -ar 44100 source.m4a

    # split into two parts
    ffmpeg -y -ss 00:00:00 -i source.m4a -to 6 -c copy part1.m4a
    ffmpeg -y -ss 00:00:06 -i source.m4a -c copy part2.m4a

    # re-encode only the first part with the same setting as source file
    fmpeg -y -i part1.m4a -c:a libfdk_aac -profile:a aac_he -b:a 128k -ar 44100 part1reencoded.m4a

    # create file list to be concatenated
    echo 'ffconcat version 1.0
    file part1reencoded.m4a
    file part2.m4a' > my.list

    # finally concatenate both parts
    ffmpeg -y -f concat -safe 0 -i my.list -c copy parts.m4a

    # play the result
    ffplay parts.m4a

    Unfortunately, the result file has noises at 00:00:06.

    Is it possible to split frame accurate an AAC file using FFmpeg ?

  • libvpxenc : split vp8/vp9 options array

    2 novembre 2013, par James Zern
    libvpxenc : split vp8/vp9 options array
    

    the current options are left for both to provide command line compatibility

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavcodec/libvpxenc.c