Recherche avancée

Médias (91)

Autres articles (54)

  • D’autres logiciels intéressants

    12 avril 2011, par

    On ne revendique pas d’être les seuls à faire ce que l’on fait ... et on ne revendique surtout pas d’être les meilleurs non plus ... Ce que l’on fait, on essaie juste de le faire bien, et de mieux en mieux...
    La liste suivante correspond à des logiciels qui tendent peu ou prou à faire comme MediaSPIP ou que MediaSPIP tente peu ou prou à faire pareil, peu importe ...
    On ne les connais pas, on ne les a pas essayé, mais vous pouvez peut être y jeter un coup d’oeil.
    Videopress
    Site Internet : (...)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (8375)

  • unconnected output - FFMPEG

    9 avril 2018, par Hernan Quintero

    Im trying to make my first apple Service.

    I want FFMPEG to extract 5.1 Audio from a video with this command line :

    ffmpeg -i infile \
    -filter_complex "channelsplit=channel_layout=5.1[FL][FR][FC][LFE][BL]
    [BR]" \
    -map "[FL]" front_left.wav \
    -map "[FR]" front_right.wav \
    -map "[FC]" front_center.wav \
    -map "[LFE]" lfe.wav \
    -map "[BL]" back_left.wav \
    -map "[BR]" back_right.wav

    It works very good from the Terminal, but when I try to make a Service in Automator I get the following error :

    Filter channelsplit:BR has an unconnected output

    This is the command line for the service :

    on run {input, parameters}
    tell application "Terminal"
       activate
       set filesString to ""
       repeat with file_ in input
           set filesString to filesString & " " & quoted form of (POSIX path of file_)
       end repeat
       do script "for f in" & filesString & "; do
    /usr/local/bin/ffmpeg -i \"$f\" -filter_complex
    channelsplit=channel_layout=5.1[FL][FR][FC][LFE][BL][BR]
    -map [FL] front_left.wav
    -map [FR] front_right.wav
    -map [FC] front_center.wav
    -map [LFE] lfe.wav
    -map [BL] back_left.wav
    -map [BR] back_right.wav
    done"
    end tell
    return input
    end run

    Could you guys help me to figure out what I’m doing wrong ?

    Thank you very much.

  • Can I see what ffmpeg.exe in task manager is doing ?

    28 février 2023, par miitchel

    So I use a program that starts ffmpeg processes in the background, is it possible to open one of those processes in the Windows terminal so I can see what it is doing ?

    


  • Overlying video frames using FFmpeg in c++

    14 mai 2020, par Bruce

    I am trying to overlaying two videos using FFmpeg in c++. So I followed the FFmpeg page and followed this command in terminal.

    



    $ ffmpeg -i Right.mov -i Left.mov -filter_complex "[0:v][1:v] overlay=0:0"  -c:a copy output.mov


    



    I can implement this functionality through the terminal, but I am trying to achieve this functionality through codding.

    



    typedef struct {
    AVFormatContext *fmt_ctx;
    int stream_idx;
    AVRational time_base;
    AVStream *video_stream;
    AVCodecContext *codec_ctx;
    AVCodecContext *pCodecCtxOrig;
    AVCodec *decoder;
    AVPacket *packet;
    AVFrame *av_frame;
    AVFrame *gl_frame;
    AVFrame *out_frame;
    AVStream *pStream;
    struct SwsContext *conv_ctx;


    



    also, I show some example code, but I am not sure about it

    



    https://ffmpeg.org/doxygen/2.1/doc_2examples_2filtering_video_8c-example.html

    



    and 
https://code5.cn/so/c%2B%2B/2601062

    



    AVFilterContext *buffersink_ctx;
AVFilterContext *buffersrc_ctx;
AVFilterGraph *filter_graph;


    



    how can I implement this functionality in my code ?