Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

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

Autres articles (25)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

  • Encoding and processing into web-friendly formats

    13 avril 2011, par

    MediaSPIP automatically converts uploaded files to internet-compatible formats.
    Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
    Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
    Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
    All uploaded files are stored online in their original format, so you can (...)

Sur d’autres sites (2588)

  • 2 files found with path 'lib/arm64-v8a/libc++_shared.so' from inputs...-react native

    19 septembre 2024, par CrackerKSR

    I am trying to enable package of ffmpeg-kit-react-native in react-native.
The sample commands given in the example executes successfully. But I want to use libwebp for converting gif files to webp which is under package named video. As instructed . I have to enable the package to use some libraries.

    


    


    2.2.1 Enabling a Package on Android
Edit android/build.gradle file and add the package name in ext.ffmpegKitPackage variable.

    


    ext {&#xA;   ffmpegKitPackage = "<package>"&#xA;}&#xA;</package>

    &#xA;

    &#xA;

    So I added a line in the node_module/ffmpeg-kit-react-native/android/build.gradle

    &#xA;

    android {&#xA;  compileSdkVersion 30&#xA;&#xA;  defaultConfig {&#xA;    minSdkVersion safeExtGet(&#x27;ffmpegKitPackage&#x27;, &#x27;https&#x27;).contains("-lts") ? 16 : 24&#xA;    targetSdkVersion 30&#xA;    versionCode 451&#xA;    versionName "4.5.1"&#xA;  }&#xA;&#xA;  buildTypes {&#xA;    release {&#xA;      minifyEnabled false&#xA;    }&#xA;  }&#xA;  lintOptions {&#xA;    disable &#x27;GradleCompatible&#x27;&#xA;  }&#xA;  compileOptions {&#xA;    sourceCompatibility JavaVersion.VERSION_1_8&#xA;    targetCompatibility JavaVersion.VERSION_1_8&#xA;  }&#xA;&#xA;  rootProject.ext.ffmpegKitPackage = "video" // Added this line here &#xA;&#xA;}&#xA;

    &#xA;

    Error :

    &#xA;

    * What went wrong:&#xA;Execution failed for task &#x27;:app:mergeDebugNativeLibs&#x27;.&#xA;> A failure occurred while executing com.android.build.gradle.internal.tasks.MergeJavaResWorkAction&#xA;   > 2 files found with path &#x27;lib/arm64-v8a/libc&#x2B;&#x2B;_shared.so&#x27; from inputs:&#xA;      - C:\Users\ADMIN\.gradle\caches\transforms-3\7403ebe5571a2ce5a6a5fc9876af4814\transformed\jetified-react-native-0.66.4\jni&#xA;      - C:\Users\ADMIN\.gradle\caches\transforms-3\4be54e44fe38656741a8345504588323\transformed\jetified-ffmpeg-kit-video-4.5.1-1\jni&#xA;     If you are using jniLibs and CMake IMPORTED targets, see&#xA;     https://developer.android.com/r/tools/jniLibs-vs-imported-targets&#xA;

    &#xA;

    I have tried ./gradlew clean but problem is still there.&#xA;How to fix this error ?

    &#xA;

  • How to concatenate variables and strings as a full path for the "output file" of an ffmpeg command in a bash script

    12 mai 2022, par djspatule

    I'm trying to learn to bash scripting and I tried to use variables and arguments, etc. to specify a complex output file name to a ffmpeg command as follows :

    &#xA;

    for file in "$1"/*; do&#xA;    #get the name of each file in the directory (without the path nor the extension)&#xA;    filename=$(basename $file .mp3)&#xA;    #use mimic for Text To Speech. Difficult to install but good and natural voices.&#xA;    ~/Desktop/mimic1/mimic -t "$filename" -o $1/wavefile.wav&#xA;    #converts the wav file outputed by mimic into mp3&#xA;    ffmpeg -i $1/wavefile.wav -f mp3 "${1}/${filename} (title).mp3"&#xA;done&#xA;&#xA;

    &#xA;

    But the "${1}/${filename} (title).mp3" part in particular really doesn't seem to work...

    &#xA;

    Indeed, if I run script.sh ./, I get a file called (title).mp3

    &#xA;

    Can you help me figure out what it is I'm doing wrong ?&#xA;Thanks a million in advance.&#xA;Best,

    &#xA;

    P.S. : i also get earlier in the terminal's output basename: extra operand ‘.mp3’...like my whole code is wrong....?

    &#xA;

  • libgsm : detect libgsm header path

    21 janvier 2013, par Brad Smith

    libgsm : detect libgsm header path