
Recherche avancée
Autres articles (68)
-
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 -
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP automatically converts uploaded files to internet-compatible formats.
Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
All uploaded files are stored online in their original format, so you can (...) -
L’utiliser, en parler, le critiquer
10 avril 2011La première attitude à adopter est d’en parler, soit directement avec les personnes impliquées dans son développement, soit autour de vous pour convaincre de nouvelles personnes à l’utiliser.
Plus la communauté sera nombreuse et plus les évolutions seront rapides ...
Une liste de discussion est disponible pour tout échange entre utilisateurs.
Sur d’autres sites (8033)
-
copy step written on stackoverflow to install FFMPEG on wamp not working
17 septembre 2019, par user3833682I’m working on project for converting youtube videos into mp3 format and found this also to install
ffmpeg
on wamp server Install FFMPEG on WAMP and try other links also butffmpeg
extension is not installing so I also checked it atphpinfo
to confirm its installed or not but not installed and I’vewindows 7 64
,wampserver 2.4
,apache 2.4.4
and php version is5.4.12
I don’t know what am I missing, I spent my 6 hours to figure out but extension offfmpeg
is not installed yet please tell me what am I doing wrong ?Now after that I’m getting popup message twice when I start wamp server `PHP Startup : Unable to load dynamic library
c :/wamp/bin/php/php5.4.12/ext/php_ffmpeg.dll’ - %1 is not a valid
Win32 application. -
Create a video from images where the video size is not much larger than the sum of all images
25 mars 2024, par Stefan FalkWhat I am describing is basically a slideshow.


I was hoping to be able to create a video which consistis of, for example, three different frames 1, 2 and 3 but each of them gets shown for an hour.


Let's say we have a file
inputs.txt


file 'img1.jpg'
duration 3600
file 'img2.jpg'
duration 3600
file 'img3.jpg'
duration 3600



I would like to concatenate these images like so :


ffmpeg -f concat -i inputs.txt output.mp4 -y



However, this is already giving me the warning of




More than 1000 frames duplicated




I have seen some parameters in the documentation like
decimate
ormpdecimate
but they do not seem to do the trick here.

Is it even possible to do what I am trying here ?


It seems like a "no-brainer" to just show a particular image after a certain amount of time but I am not sure how to achieve that.


By the way, I also tried to use MKV here, but this results in a video with just three frames instead of a three hours video :


ffmpeg -f concat -i inputs.txt output.mkv -y



-
Converting mkv files to mp4 with ffmpeg-python [closed]
22 août, par myth0sI have a lot of .mkv files that I'm trying to convert to .mp4, so I decided to try and program a solution in python. After a few hours, trying to figure out how to copy the subfolders too, I gave up on it and decided to stick with converting individual subfolders, and then copying them over to another directory.


I've made a simple script, that should convert .mkv files that are in the same folder as the script. However, I keep getting this error :




FileNotFoundError : [WinError 2] The system cannot find the file specified




Here's my code :


import os
import ffmpeg

start_dir = os.getcwd()

def convert_to_mp4(mkv_file):
 no_extension = str(os.path.splitext(mkv_file))
 with_mp4 = no_extension + ".mp4"
 ffmpeg.input(mkv_file).output(with_mp4).run()
 print("Finished converting {}".format(no_extension))

for path, folder, files in os.walk(start_dir):
 for file in files:
 if file.endswith('.mkv'):
 print("Found file: %s" % file)
 convert_to_mp4(file)
 else:
 pass