Recherche avancée

Médias (1)

Mot : - Tags -/école

Autres articles (104)

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

  • Soumettre bugs et patchs

    10 avril 2011

    Un logiciel n’est malheureusement jamais parfait...
    Si vous pensez avoir mis la main sur un bug, reportez le dans notre système de tickets en prenant bien soin de nous remonter certaines informations pertinentes : le type de navigateur et sa version exacte avec lequel vous avez l’anomalie ; une explication la plus précise possible du problème rencontré ; si possibles les étapes pour reproduire le problème ; un lien vers le site / la page en question ;
    Si vous pensez avoir résolu vous même le bug (...)

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

Sur d’autres sites (12623)

  • Anomalie #4813 : Liens "(+) Plus d’info" et "(-) Moins d’info"

    7 juin 2021

    Pour l’instant le + et le moins c’est faute de mieux en attendant les icônes symboliques.
    Il faut imaginer que dans l’avenir ça sera remplacé par une icône caret ou autre, qui montrera proprement que le truc est dépliable.

    Les outlines servent uniquement pour l’accessibilité à la prise de focus. Si dans certaines situations ça fait pas très "joli", c’est pas bien grave, c’est pas le but premier. Là on est dans un groupe de boutons, seules les extrémités ont des arrondis.

    Nb : c’est exactement pareil que dans bootstrap, si tu met .btn-link au lieu de .btn-primary dans le 1er exemple, tu auras le même résultat : https://getbootstrap.com/docs/5.0/components/button-group/

  • How to import FFmpeg into Android project

    30 mai, par Vyacheslav Parinov

    I'm trying to convert series of images into video.
For that I'm adding FFmpeg into my Android project.
However it is not adding properly, so I can't import class FFmpeg into the code.
in the statement "int rc = FFmpeg.execute(command) ;" FFmpeg is highlighted in red.

    


    I think something wrong with libraries. Could you please give suggestion how import libraries correctly ?

    


    My Manifest file below

    


    <?xml version="1.0" encoding="utf-8"?>


    


    


    &#xA;&#xA;&#xA;&#xA;    &#xA;        &#xA;            <action></action>&#xA;&#xA;            <category></category>&#xA;        &#xA;    &#xA;&#xA;

    &#xA;&#xA;

    My settings.gradle file

    &#xA;

    pluginManagement {&#xA;repositories {&#xA;    google()&#xA;    mavenCentral()&#xA;    gradlePluginPortal()&#xA;}&#xA;

    &#xA;

    &#xA;

    dependencyResolutionManagement {&#xA;repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)&#xA;repositories {&#xA;    google()&#xA;    mavenCentral()&#xA;}&#xA;

    &#xA;

    &#xA;rootProject.name = "TimelapseLite"&#xA;include ':app'

    &#xA;

    My build.gradle file

    &#xA;

    plugins {&#xA;    id &#x27;com.android.application&#x27;&#xA;}&#xA;&#xA;android {&#xA;    namespace &#x27;ae.vpdev.timelapselite&#x27;&#xA;    compileSdk 33&#xA;&#xA;defaultConfig {&#xA;    applicationId "ae.vpdev.timelapselite"&#xA;    minSdk 26&#xA;    targetSdk 33&#xA;    versionCode 1&#xA;    versionName "1.0"&#xA;&#xA;    testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"&#xA;}&#xA;&#xA;buildTypes {&#xA;    release {&#xA;        minifyEnabled false&#xA;        proguardFiles getDefaultProguardFile(&#x27;proguard-android-optimize.txt&#x27;), &#x27;proguard-rules.pro&#x27;&#xA;    }&#xA;}&#xA;compileOptions {&#xA;    sourceCompatibility JavaVersion.VERSION_1_8&#xA;    targetCompatibility JavaVersion.VERSION_1_8&#xA;}&#xA;

    &#xA;

    &#xA;

    dependencies

    &#xA;

    implementation &#x27;androidx.appcompat:appcompat:1.6.1&#x27;&#xA;implementation &#x27;com.google.android.material:material:1.9.0&#x27;&#xA;implementation &#x27;androidx.constraintlayout:constraintlayout:2.1.4&#x27;&#xA;implementation &#x27;com.arthenica:mobile-ffmpeg-full:4.5.LTS&#x27;&#xA;testImplementation &#x27;junit:junit:4.13.2&#x27;&#xA;androidTestImplementation &#x27;androidx.test.ext:junit:1.1.5&#x27;&#xA;androidTestImplementation &#x27;androidx.test.espresso:espresso-core:3.5.1&#x27;&#xA;

    &#xA;

    &#xA;

    My code in MainActivity

    &#xA;

    private void convertImagesToVideo() {&#xA;    StringBuilder imageListFileContent = new StringBuilder();&#xA;    for (Uri imageUri : selectedImages) {&#xA;        imageListFileContent.append("file &#x27;").append(imageUri.getPath()).append("&#x27;\n");&#xA;    }&#xA;&#xA;    try {&#xA;        File imageListFile = new File(getCacheDir(), "image_list.txt");&#xA;        FileWriter writer = new FileWriter(imageListFile);&#xA;        writer.append(imageListFileContent.toString());&#xA;        writer.flush();&#xA;        writer.close();&#xA;&#xA;        File outputFile = new File(getExternalFilesDir(null), "output_video.mp4");&#xA;        String outputFilePath = outputFile.getAbsolutePath();&#xA;&#xA;        String command = "-f concat -safe 0 -i " &#x2B; imageListFile.getAbsolutePath() &#x2B;&#xA;                " -vf \"scale=-2:720\" -r 30 -c:v libx264 -pix_fmt yuv420p " &#x2B; outputFilePath;&#xA;&#xA;        int rc = FFmpeg.execute(command);&#xA;&#xA;        if (rc == RETURN_CODE_SUCCESS) {&#xA;            Log.d("FFmpeg", "Video conversion completed successfully");&#xA;            // Now you can use the outputFilePath to play or share the video&#xA;        } else {&#xA;            Log.d("FFmpeg", "Video conversion failed");&#xA;        }&#xA;    } catch (IOException e) {&#xA;        e.printStackTrace();&#xA;    }&#xA;}&#xA;

    &#xA;

  • How to use ffmpeg in anaconda Jupyter Notebook [closed]

    12 avril 2020, par joshus

    For hours I have been trying to use ffmpeg in Jupyter notebook in anaconda. I literally have no clue what I am doing as I am quite a noob. Any help would be much appreciated.

    &#xA;&#xA;

    I found this website but I dont know how to use it https://anaconda.org/conda-forge/ffmpeg

    &#xA;