
Recherche avancée
Médias (1)
-
Video d’abeille en portrait
14 mai 2011, par
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (41)
-
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 -
Configuration spécifique d’Apache
4 février 2011, parModules spécifiques
Pour la configuration d’Apache, il est conseillé d’activer certains modules non spécifiques à MediaSPIP, mais permettant d’améliorer les performances : mod_deflate et mod_headers pour compresser automatiquement via Apache les pages. Cf ce tutoriel ; mode_expires pour gérer correctement l’expiration des hits. Cf ce tutoriel ;
Il est également conseillé d’ajouter la prise en charge par apache du mime-type pour les fichiers WebM comme indiqué dans ce tutoriel.
Création d’un (...) -
Contribute to a better visual interface
13 avril 2011MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.
Sur d’autres sites (6248)
-
avformat/flvdec : Check double before cast in parse_keyframes_index()
26 janvier 2021, par Michael Niedermayeravformat/flvdec : Check double before cast in parse_keyframes_index()
Fixes : -2.21166e+304 is outside the range of representable values of type 'long'
Fixes : 29169/clusterfuzz-testcase-minimized-ffmpeg_DEMUXER_fuzzer-5725452796821504Found-by : continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Signed-off-by : Michael Niedermayer <michael@niedermayer.cc> -
Remove double ' ;'
1er mars 2021, par Andreas Rheinhardt -
How to write ffmpeg windows command for file path inside double quotes option
19 février 2021, par Herahadi Anplease help


I want to use ffmpeg for my c # application but an error appears


this is my code


videoPath = @"c:\location\in.mp4";
tempVideoPath = @"c:\another_location\out.mp4";

process.StartInfo.FileName = @"ffmpeg.exe";
 
process.StartInfo.Arguments = "-loop 1 -i \""+tbBGFrame.Text+ "\" -vf \"movie=\""+videoPath+ "\",scale=1900:-1[inner];[in][inner]overlay=70:70:shortest=1[out]\" -y \""+tempVideoPath+"\"";



the problem is inside movie parameter. i have to include video path inputed by user but its give an error because its already double quote exist before.


its successfully if i try on windows cmd like this


> cd "C:\Users\Toshiba\Pictures\test vcp\input_mp4_dir\"
> ffmpeg.exe -loop 1 -i Coronavirus00000000.jpg -vf "movie=input.mp4,scale=1180:-1[inner];[in][inner]overlay=70:70:shortest=1[out]" -y out.mp4



but how i can run that command wihtout change directory to input.mp4 directory ?