
Recherche avancée
Autres articles (43)
-
Submit bugs and patches
13 avril 2011Unfortunately a software is never perfect.
If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
You may also (...) -
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip 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 2013Puis-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 (9429)
-
How to make Fringe Font by using ffmpeg using command line CLI in windows ?
21 juin 2015, par Ehtesham ShamiI have a code of ffmpeg of command line. First I have a input image of letter A and then I am using my sample code on that image and getting another output image with different style of letter A.
I want to make a border on that output letter A.
I can’t be attached the photos. I have pasted that code sample.Please tell me what is the modification is required in that code sample.
Code Sample :
ffmpeg -y -i back.jpg -filter_complex "drawtext=fontfile=/Windows/Fonts/meiryo.ttc:text=A:fontcolor=red:x=100:y=100:fontsize=200" output.jpg
-
How to write command line argument input redirection within a bash script ?
3 septembre 2013, par Serg ikSI'm putting together a bash script to run movie rendering jobs.
ffmpeg
expects a multi-line text file as one of the arguments for concatenation filter to join several files into one. Like this :ffmpeg -f concat -i mylist.txt -c copy output
There's also an option to write it all in a single line like so :
ffmpeg -f concat -i <(printf "file '%s'\n" A.mp4 B.mp4) -c copy Output.mp4
How do I write the latter for into a bash script, substituting the file names from other variables ? Tryed splitting the variables, but its not the one that works.
$A
and$B
variables contains paths to input files.#!/bin/bash
...
TMP_LIST=$(printf "file '%s'\n" ${A} ${B})
APPEND="${FFMPEG} -f concat -i <<< {${TMP_LIST}} -c copy ${OUTPUT}"
# run the concatenation:
$APPEND -
avcodec/exr : Check col/line for integer overflow
1er février 2021, par Michael Niedermayeravcodec/exr : Check col/line for integer overflow
Fixes : signed integer overflow : -2272 + -2147483360 cannot be represented in type 'int'
Fixes : 30009/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_EXR_fuzzer-5005660322398208Found-by : continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>