
Recherche avancée
Autres articles (101)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
Les tâches Cron régulières de la ferme
1er décembre 2010, parLa gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
Le super Cron (gestion_mutu_super_cron)
Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...) -
Emballe Médias : Mettre en ligne simplement des documents
29 octobre 2010, parLe plugin emballe médias a été développé principalement pour la distribution mediaSPIP mais est également utilisé dans d’autres projets proches comme géodiversité par exemple. Plugins nécessaires et compatibles
Pour fonctionner ce plugin nécessite que d’autres plugins soient installés : CFG Saisies SPIP Bonux Diogène swfupload jqueryui
D’autres plugins peuvent être utilisés en complément afin d’améliorer ses capacités : Ancres douces Légendes photo_infos spipmotion (...)
Sur d’autres sites (11775)
-
unconnected output - FFMPEG
9 avril 2018, par Hernan QuinteroIm 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.wavIt 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 runCould 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 miitchelSo 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 BruceI 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 ?