Recherche avancée

Médias (1)

Mot : - Tags -/bug

Autres articles (62)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (13392)

  • 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 make FFmpeg automatically inject mp3 audio tracks in the single cycled muted video ?

    5 décembre 2020, par Grrzly

    everybody here ! So basically this is what I want to achieve :

    &#xA;

    I have a muted video about 3 minutes long.&#xA;I have a list of audio tracks in mp3 format (40 songs in a folder with duration 2 to 6 mins each one)

    &#xA;

    I want this video to play cycled automatically taking songs from playlist and injecting them to the video one by one. Every time a song finishes the next one from the list should start playing at the moment. Video continues playing and doesn't care duration of tracks.

    &#xA;

    I consider it as the first step on the way to broadcast radio with a video background on youtube in 24/7 mode with ability to put additional tracks to playlist without need to stop translation.

    &#xA;

    My problem is that I'm new in FFmpeg and I would appreciate any suggestions regarding which FFMpeg topic to start investigate with in order to achieve my goal

    &#xA;

  • AAC encoder : encode out-of-phase I/S efficiently

    10 janvier 2016, par Claudio Freire
    AAC encoder : encode out-of-phase I/S efficiently
    

    Use the ability to invert phase with ms_mask instead of changing
    the codebook when possible, to avoid having to switch codebooks
    if some bands are INTENSTY_BT and others are INTENSITY_BT2, since
    usually a set ms_mask uses less bits that a codebook change. While
    it may not always be a win (ie : if it causes an ms_mask bitmap
    to be sent when it wouldn’t have been otherwise), it’s unlikely
    since the ms_mask bitmap will almost always be there already for
    M/S itself.

    • [DH] libavcodec/aacenc_is.c