Recherche avancée

Médias (1)

Mot : - Tags -/swfupload

Autres articles (56)

  • Mise à disposition des fichiers

    14 avril 2011, par

    Par défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
    Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
    Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...)

  • Problèmes fréquents

    10 mars 2010, par

    PHP et safe_mode activé
    Une des principales sources de problèmes relève de la configuration de PHP et notamment de l’activation du safe_mode
    La solution consiterait à soit désactiver le safe_mode soit placer le script dans un répertoire accessible par apache pour le site

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

Sur d’autres sites (7921)

  • how to play blocks one by one with no pops and clicks ?

    5 février 2016, par Stepan Yakovenko

    I have two tags like this :

    <audio src="lub0.mp4"></audio>
    <audio src="lub1.mp4"></audio>

    I want to play them one by one, i.e. .play() first one and when it launches onend event, I’ll .play() the second one. Unfortunately this gives me a pop sound in between. Is there any correct crossbrowser way to do this without click ?

    The files themselves are fine, if I glue them to each other in ffmpeg, sound is perfect.

    Thanx.

  • How to install flutter_ffmpeg in flutter and create videos videos filter ?

    6 juillet 2023, par Manish Kumar

    When I run my Flutter Application after installing flutter_ffmpeg , its give me error like that.

    &#xA;

    &#xA;

    &#xA;

    FAILURE : Build failed with an exception.

    &#xA;

      &#xA;
    • What went wrong :&#xA;Execution failed for task ':app:mergeDebugNativeLibs'.
    • &#xA;

    &#xA;

    &#xA;

    A failure occurred while executing com.android.build.gradle.internal.tasks.MergeNativeLibsTask$MergeNativeLibsTaskWorkAction&#xA;2 files found with path 'lib/arm64-v8a/libavdevice.so' from inputs :&#xA;- C :\Users\ms471.gradle\caches\transforms-3\7451ee8c12b5ab807d22ca1bb7285419\transformed\jetified-mobile-ffmpeg-https-4.4\jni\arm64-v8a\libavdevice.so&#xA;- C :\Users\ms471.gradle\caches\transforms-3\5693c1c30f39d5c80a43f75ccb4d5110\transformed\jetified-ffmpeg-kit-https-5.1.LTS\jni\arm64-v8a\libavdevice.so&#xA;If you are using jniLibs and CMake IMPORTED targets, see&#xA;https://developer.android.com/r/tools/jniLibs-vs-imported-targets

    &#xA;

    &#xA;

      &#xA;
    • Try :
    • &#xA;

    &#xA;

    &#xA;

    Run with —stacktrace option to get the stack trace.&#xA;Run with —info or —debug option to get more log output.&#xA;Run with —scan to get full insights.

    &#xA;

    &#xA;

    &#xA;

    BUILD FAILED in 1m 16s&#xA;Exception : Gradle task assembleDebug failed with exit code 1

    &#xA;

    I don't know what is the error, can someone help !!

    &#xA;

    I am trying to build videos filter or effects in flutter.

    &#xA;

  • Concat 3 videos, setting the output frame-rate based on one of the three videos

    14 février 2023, par 3EK

    I have 3 videos that I would like to concat. An intro, a main video and an outro. All mp4s, all the same spec except the main video is a different frame rate to the other two video assets.

    &#xA;

    I am trying to use ffprobe to find out the frame rate of the main video and then apply that frame rate to the output file.

    &#xA;

    This is what I have so far, but it is not working.

    &#xA;

    #!/bin/bash&#xA;&#xA;mezzfile=mezzfile.mp4&#xA;tailtime=20&#xA;duration=$(ffprobe -v error -show_entries format=duration -of default=noprint_wrappers=1:nokey=1 $mezzfile)&#xA;framerate=$(ffprobe -v 0 -of compact=p=0 -select_streams 0 \&#xA;-show_entries stream=r_frame_rate &#x27;$mezzfile&#x27;)&#xA;&#xA;ffmpeg -hide_banner -y \&#xA;  -i sting.mp4 \&#xA;  -i $mezzfile \&#xA;  -i endboard.mp4 \&#xA;  -filter_complex \&#xA;    "[0:v]setpts=PTS-STARTPTS,fps=${framerate}[v_intro]; \&#xA;     [0:a]asetpts=PTS-STARTPTS,fps=${framerate}[a_intro]; \&#xA;     [1:v]setpts=PTS-STARTPTS,split[v_main1][v_main2]; \&#xA;     [1:a]asetpts=PTS-STARTPTS[a_main]; \&#xA;     [2:v]setpts=PTS-STARTPTS,fps=${framerate}[v_endboard]; \&#xA;     [v_main1]select=&#x27;gt(t,$duration-$tailtime)&#x27;,scale=w=iw/2:h=ih/2,setpts=PTS-STARTPTS[v_tail]; \&#xA;     [v_endboard][v_tail]overlay[v_pip]; \&#xA;     [v_main2]select=&#x27;lte(t,$duration-$tailtime)&#x27;,setpts=PTS-STARTPTS[v_mid]; \&#xA;     [v_intro][v_mid][v_pip]concat=n=3:v=1:a=0[v_out]; \&#xA;     [a_intro][a_main]concat=n=2:v=0:a=1[a_out]" \&#xA;  -map "[v_out]" \&#xA;  -map "[a_out]" \&#xA;  output.mp4&#xA;

    &#xA;

    Any help would be greatly appreciated !&#xA;Cheers !

    &#xA;

    I have tried the code above. Hoping someone can help me figure out what I'm doing wrong ?

    &#xA;