Recherche avancée

Médias (0)

Mot : - Tags -/configuration

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

Autres articles (104)

  • La sauvegarde automatique de canaux SPIP

    1er avril 2010, par

    Dans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
    Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...)

  • Other interesting software

    13 avril 2011, par

    We don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
    The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
    We don’t know them, we didn’t try them, but you can take a peek.
    Videopress
    Website : http://videopress.com/
    License : GNU/GPL v2
    Source code : (...)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

Sur d’autres sites (4189)

  • Understanding Kotlin Constructor as Java Developer

    12 octobre 2020, par Birch

    I am attempting to use a java libary with few resources. I have been following some Kotlin code and trying to implement what I can in the Java language. However, I am not 100% sure on constructing an instance of a class in Kotlin after googling.

    


    FRAME_GRABBER = FFmpegFrameGrabber("title=SomeWindow").apply {format = "gdigrab" frameRate = 30.0 imageWidth = CAPTURE_WIDTH imageHeight = CAPTURE_HEIGHT start()}

    


    I have achieved the equivalent in Java :

    


    frameGrabber = new FFmpegFrameGrabber( ? ? ? );
    frameGrabber.setFormat("gdigrab");
    frameGrabber.setFrameRate(30.0);
    frameGrabber.setImageWidth(captureWidth);
    frameGrabber.setImageHeight(captureHeight);
    frameGrabber.start();


    


    However the three constructors with their respect parameters for FFmpegFrameGrabber are File, InputStream and a String for file name.

    


    I would like to know what exactly "title=SomeWindow" is doing in the Kotlin code. Thanks.

    


  • Android FFmpegKit-Full dependencies missing

    9 mai, par Adrián Primo

    I've tried to compile the app on Android and now it won't run as it can't find these files. I knew the *FFmpegKit *project was going to remove its binaries so I downloaded the package locally but I totally forgot about Android's specific files.

    


    Launching lib\main.dart on sdk gphone64 x86 64 in debug mode...
Running Gradle task 'assembleDebug'...

FAILURE: Build failed with an exception.

* What went wrong:
Execution failed for task ':app:checkDebugAarMetadata'.
> Could not resolve all files for configuration ':app:debugRuntimeClasspath'.
   > Could not find com.arthenica:ffmpeg-kit-full:6.0-2.
     Searched in the following locations:
       - https://dl.google.com/dl/android/maven2/com/arthenica/ffmpeg-kit-full/6.0-2/ffmpeg-kit-full-6.0-2.pom
       - https://repo.maven.apache.org/maven2/com/arthenica/ffmpeg-kit-full/6.0-2/ffmpeg-kit-full-6.0-2.pom
       - https://jcenter.bintray.com/com/arthenica/ffmpeg-kit-full/6.0-2/ffmpeg-kit-full-6.0-2.pom
       - https://storage.googleapis.com/download.flutter.io/com/arthenica/ffmpeg-kit-full/6.0-2/ffmpeg-kit-full-6.0-2.pom
     Required by:
         project :app > project :ffmpeg_kit_flutter_full


    


    I've tried to download the dependencies manually from the repository, but the owner has removed the files.

    


    Does anybody have the required files for the ffmpegkit-full package ? I found in a forked repository with the https package installed locally, but I need the full package.

    


    Dependency in Maven Repository

    


    Owner's files

    


  • lavu/cpu : disable MMX warning on non x86 platforms

    28 juin 2017, par Clément Bœsch
    lavu/cpu : disable MMX warning on non x86 platforms
    

    We have AV_CPU_FLAG_ARMV8 == AV_CPU_FLAG_SSE3 which causes a trigger of
    this MMX warning on AArch64.

    • [DH] libavutil/cpu.c