Recherche avancée

Médias (0)

Mot : - Tags -/diogene

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

Autres articles (73)

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

  • Activation de l’inscription des visiteurs

    12 avril 2011, par

    Il est également possible d’activer l’inscription des visiteurs ce qui permettra à tout un chacun d’ouvrir soit même un compte sur le canal en question dans le cadre de projets ouverts par exemple.
    Pour ce faire, il suffit d’aller dans l’espace de configuration du site en choisissant le sous menus "Gestion des utilisateurs". Le premier formulaire visible correspond à cette fonctionnalité.
    Par défaut, MediaSPIP a créé lors de son initialisation un élément de menu dans le menu du haut de la page menant (...)

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

Sur d’autres sites (6817)

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