Recherche avancée

Médias (0)

Mot : - Tags -/signalement

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

Autres articles (72)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

  • 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 ;

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

Sur d’autres sites (9285)

  • how to integrate ffmpeg gl-transition project in my exit project

    17 décembre 2019, par p.jadhav

    i want to add trasition effect between images of video so i used https://github.com/transitive-bullshit/ffmpeg-gl-transition for video trasition effect but Building command not work in my android studio.
    1.git clone http://source.ffmpeg.org/git/ffmpeg.git ffmpeg.
    2.cd ffmpeg.

    first two command run successfully in android studio terminal.
    when try to run "ln -s /ffmpeg-gl-transition/vf_gltransition.c libavfilter/"
    get error :

    screen shot1
    enter image description here

    when run command "git apply /ffmpeg-gl-transition/ffmpeg.diff"
    get error :

    screen shot2
    enter image description here
    and run command "./configure —enable-libx264 —enable-gpl —enable-opengl \
    —enable-filter=gltransition —extra-libs=’-lGLEW -lglfw’"
    get error :

    screen shot3
    enter image description here
    i use com.writingminds:FFmpegAndroid:0.3.2 for create normal video.please tell me how to integrate library in my project or any anotherway to do this

  • pip installation failure of pyAV with exit status 1181

    11 février 2020, par Kesar Murthy

    I am having trouble installing PyAV through pip. First it required me to download Microsoft Visual C++ Build Tools

    building 'av.buffer' extension
    error: Microsoft Visual C++ 14.0 is required. Get it with "Microsoft Visual C++ Build Tools": https://visualstudio.microsoft.com/downloads/

    and when I did install this, I get the following error

    LINK : fatal error LNK1181: cannot open input file 'avcodec.lib'
       error: command 'C:\\Users\\Kesar\\AppData\\Local\\Programs\\Common\\Microsoft\\Visual C++ for Python\\9.0\\VC\\Bin\\amd64\\link.exe' failed with exit status 1181

    I even tried to build PyAV from source, but the same problem persists. How do I solve this ?

  • ffmpeg.exe returned non-zero exit status. Check stdout

    31 mars 2019, par Tech Guy

    I am trying to convert MP3 file to MP4 in Java using this ffmpeg-cli-wrapper by Andrew Brampton. But when I try to convert that It gives me this error.

    SLF4J : Failed to load class "org.slf4j.impl.StaticLoggerBinder".
    SLF4J : Defaulting to no-operation (NOP) logger implementation SLF4J :
    See http://www.slf4j.org/codes.html#StaticLoggerBinder for further
    details.

    [mp4 @ 0000022b6d40c2c0] Could not find tag for codec mpeg4
    in stream #0, codec not currently supported in container Could not
    write header for output file #0 (incorrect codec parameters ?) :
    Invalid argument Error initializing output stream 0:0 —

    Exception in
    thread "main" java.lang.RuntimeException : java.io.IOException :
    \ffmpeg\bin\ffmpeg.exe returned non-zero exit status. Check stdout.
    at
    net.bramp.ffmpeg.job.TwoPassFFmpegJob.run(TwoPassFFmpegJob.java:75)
    Caused by : java.io.IOException : \ffmpeg\bin\ffmpeg.exe returned
    non-zero exit status. Check stdout. at
    net.bramp.ffmpeg.FFcommon.throwOnError(FFcommon.java:51) at
    net.bramp.ffmpeg.FFcommon.run(FFcommon.java:113) at
    net.bramp.ffmpeg.FFmpeg.run(FFmpeg.java:184) at
    net.bramp.ffmpeg.FFmpeg.run(FFmpeg.java:202) at
    net.bramp.ffmpeg.job.TwoPassFFmpegJob.run(TwoPassFFmpegJob.java:61)
    ... 1 more

    And here is my code,

    FFmpegProbeResult fFmpegProbeResult = ffprobe.probe("/path/to/in.mp3");

    FFmpegBuilder builder = new FFmpegBuilder()

           .setInput(fFmpegProbeResult)
           .setFormat("mp3")
           .overrideOutputFiles(true)

           .addOutput("/path/to/out.mp4")
           .setFormat("mp4")

           .setAudioChannels(1)
           .setAudioCodec("aac")
           .setAudioSampleRate(48000)
           .setAudioBitRate(32768)

           .setVideoCodec("libx264")
           .setVideoFrameRate(24, 1)
           .setVideoResolution(640, 480)

           .setStrict(FFmpegBuilder.Strict.EXPERIMENTAL)
           .done();

           FFmpegExecutor executor = new FFmpegExecutor(ffmpeg, ffprobe);

           executor.createJob(builder).run();

           executor.createTwoPassJob(builder).run();

    How can I fix this error ? How to convert using ffmpeg in Java ? Anybody can help me ? Thanks in advance.