Recherche avancée

Médias (0)

Mot : - Tags -/signalement

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (68)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

Sur d’autres sites (10816)

  • Revision 97f4fb7b5f : Rate ctrl changes to track target bitrates closer Turns off the DISABLE_RC_LONG

    2 avril 2014, par Deb Mukherjee

    Changed Paths :
     Modify /vp9/encoder/vp9_bitstream.c


     Modify /vp9/encoder/vp9_encodeframe.c


     Modify /vp9/encoder/vp9_firstpass.c


     Modify /vp9/encoder/vp9_firstpass.h


     Modify /vp9/encoder/vp9_onyx_if.c


     Modify /vp9/encoder/vp9_ratectrl.c


     Modify /vp9/encoder/vp9_ratectrl.h


     Modify /vp9/vp9_cx_iface.c



    Rate ctrl changes to track target bitrates closer

    Turns off the DISABLE_RC_LONG_TERM_MEM macro and makes other changes
    in the way the bits are updated, to make 2-pass rate control track
    target bitrates closer.

    Change-Id : I5f3be4b11c2908e6a9a9a1dd4fcf4e65531c44d8

  • SPM binary target with additional frameworks not being included

    10 septembre 2024, par Darren

    I'm trying to integrate a binaryTarget into an SPM package. The binary has additional frameworks included, but for some reason they are not being copied over to an app when compiled. This results in dyld[85157]: Library not loaded: @rpath errors.

    


    This is my Package.swift file :

    


    // swift-tools-version: 5.10

import PackageDescription

let package = Package(
    name: "converter",
    platforms: [
        .macOS(.v13),
        .iOS(.v14),
    ],
    products: [
        .library(
            name: "converter",
            targets: ["converter"])
    ],
    targets: [
        .target(
            name: "converter",
            dependencies: [
                .target(name: "ffmpeg-iOS", condition: .when(platforms: [.iOS])),
                .target(name: "ffmpeg-macOS", condition: .when(platforms: [.macOS]))
            ],
            path: "Sources/converter"
        ),
        .binaryTarget(name: "ffmpeg-iOS",
                      url: "https://github.com/arthenica/ffmpeg-kit/releases/download/v6.0/ffmpeg-kit-full-6.0-ios-xcframework.zip",
                      checksum: "c87ea1c77f0a8a6ba396c22fc33e9321befb8e85f8e8103046ddeb74fea66182"),
        .binaryTarget(name: "ffmpeg-macOS",
                      url: "https://github.com/arthenica/ffmpeg-kit/releases/download/v6.0/ffmpeg-kit-full-6.0-macos-xcframework.zip",
                      checksum: "8cab26eecd43b9389d37f64efaf43b9c6baf4e53614b62e6209d8ee8681b94b9")
    ]
)


    


    Looking in the DerivedData/.../SourcePackages folder, I can see the source includes 8 .xcframework folders. ffmpegkit.xcframework, libavcodec.xcframework etc...

    


    But when I import ffmpegkit into my project, it crashes on launch because it is missing the libavcodec framework which it uses internally (I imagine it would crash on all the others too, but this is the first one).

    


    So how can I force SPM to include these additional frameworks when it builds a project ?

    


  • Revision e859faa29e : fixed a build problem with target=x86_64-win64-vs9 Change-Id : I9c56216d22212c4f

    26 juin 2012, par Yaowu Xu

    Changed Paths : Modify /test/test_libvpx.cc fixed a build problem with target=x86_64-win64-vs9 Change-Id : I9c56216d22212c4fc13a5e2ed02f30f5b373b94c