Recherche avancée

Médias (16)

Mot : - Tags -/mp3

Autres articles (82)

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

  • ePub 3 support added

    3 novembre 2013, par Grandt
    ePub 3 support added
    

    * Added : ePub 3 support. The ePub 3 still contains the NCX for backwards
    combatability to ePub 2 readers, though there is no gurantee that it'll
    work on all readers.
    * The EPub class constructor now takes arguments for epub version,
    EPub::BOOK_VERSION_EPUB2 or EPub::BOOK_VERSION_EPUB3
    * The other new parameters on the EPub constructor are for default
    language and writing direction, used on the generated ePub 3 TOC.
    * Added : Ability to reference sub chapter id's
    * ->addChapter($chapterName, $chapterLink) ; where the link must contain
    the #id.

  • ffmpeg : Check for RAWVIDEO and do not relay only on AVFMT_RAWPICTURE

    21 août 2015, par Michael Niedermayer
    ffmpeg : Check for RAWVIDEO and do not relay only on AVFMT_RAWPICTURE
    

    The null muxer has AVFMT_RAWPICTURE set but can be fed with non-raw material

    related to Ticket4778

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] ffmpeg.c
  • FFmpeg Android Errors

    8 juin, par axjp

    Ok so im making a kotlin android app and for file conversion from 3gp to wav i added the android ffmpeg library with implementation &#x27;com.arthenica:mobile-ffmpeg-full:4.4&#x27; then i added this code to convert the files FFmpeg.execute("-i" &#x2B; f2 &#x2B;"/storage/emulated/0/Android/data/com.icompilecodewithnowarnings.ffmpegthing/files/Documents/recording.wav") for further context f2 is /storage/emulated/0/Android/data/com.icompilecodewithnowarnings.ffmpegthing/files/Documents/recording.3gp

    &#xA;

    The error log is to large to simply just fit here but heres some of it

    &#xA;

    Execution failed for task &#x27;:app:checkDebugAarMetadata&#x27;.&#xA;> Could not resolve all files for configuration &#x27;:app:debugRuntimeClasspath&#x27;.&#xA;   > Could not find com.github.hiteshsondhi88.libffmpeg:FFmpegAndroid:0.3.2.&#xA;     Searched in the following locations:&#xA;       - https://dl.google.com/dl/android/maven2/com/github/hiteshsondhi88/libffmpeg/FFmpegAndroid/0.3.2/FFmpegAndroid-0.3.2.pom&#xA;       - https://repo.maven.apache.org/maven2/com/github/hiteshsondhi88/libffmpeg/FFmpegAndroid/0.3.2/FFmpegAndroid-0.3.2.pom&#xA;     Required by:&#xA;         project :app&#xA;

    &#xA;

    Caused by: org.gradle.internal.resolve.ModuleVersionNotFoundException: Could not find com.github.hiteshsondhi88.libffmpeg:FFmpegAndroid:0.3.2.&#xA;

    &#xA;

    I tried to compile however the compiler immediatley rejected my app and refused to compile. I would have expected it to have immidiatley compiled into a apk.

    &#xA;

    EDIT :

    &#xA;

    Here is my build.gradle file

    &#xA;

    plugins {&#xA;    id &#x27;com.android.application&#x27;&#xA;    id &#x27;org.jetbrains.kotlin.android&#x27;&#xA;}&#xA;&#xA;android {&#xA;    namespace &#x27;com.icompilecodewithnowarnings.ffmpegthing&#x27;&#xA;    compileSdk 33&#xA;&#xA;    defaultConfig {&#xA;        applicationId "com.icompilecodewithnowarnings.ffmpegthing"&#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;    kotlinOptions {&#xA;        jvmTarget = &#x27;1.8&#x27;&#xA;    }&#xA;}&#xA;&#xA;dependencies {&#xA;&#xA;    implementation &#x27;androidx.core:core-ktx:1.8.0&#x27;&#xA;    implementation &#x27;androidx.appcompat:appcompat:1.4.1&#x27;&#xA;    implementation &#x27;com.google.android.material:material:1.5.0&#x27;&#xA;    implementation &#x27;androidx.constraintlayout:constraintlayout:2.1.3&#x27;&#xA;    implementation &#x27;com.arthenica:mobile-ffmpeg-full:4.4&#x27;&#xA;    implementation files(&#x27;src/main/java/musicg-1.4.2.0.jar&#x27;)&#xA;    testImplementation &#x27;junit:junit:4.13.2&#x27;&#xA;    androidTestImplementation &#x27;androidx.test.ext:junit:1.1.3&#x27;&#xA;    androidTestImplementation &#x27;androidx.test.espresso:espresso-core:3.4.0&#x27;&#xA;}&#xA;

    &#xA;