
Recherche avancée
Médias (1)
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
Autres articles (50)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...) -
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
Sur d’autres sites (6056)
-
Android record square video and concat
25 février 2015, par faruk.kuscanIs there a way to record square (640x640) videos and concat them in Android ? I looked up in the Internet and found some solutions. The solution seems to be "ffmpeg". However, to use ffmpeg I need to dive into NDK and build ffmpeg from its sources. Is there a solution by only using the Android SDK ?
My basic needs are :
- Record multiple videos (square format)
- Resize captured videos (i.e. 480x480 to 640x640)
- Concat captured videos
- Rotate final video (clockwise 90)
- Final output will be in mp4 or mpg format
-
Android FFmpeg cant set quality of image
24 octobre 2017, par TheOtherguyz4kjI am working with FFmpeg on Android, I am trying to extract frames from a video every second. I made this command that works well :
final String cmd[] = {
"-i",
videoPath,
"-vf",
"fps=1",
mediaStorageDir.getAbsolutePath() +
"out%d.png"
};Now I want to reduce the quality of the extracted frames so I tried this but get the error :
final String cmd[] = {
"-i",
videoPath,
"-vf",
"fps=1",
"-qscale:v 12",
mediaStorageDir.getAbsolutePath() +
"out%d.png"
};At least one output file must be specified
What is the problem ? I have searched online a lot and cant find a solution to the problem, also is there a better way to reduce the quality of my extracted frames ?
thanks
-
Trouble concatenating with ffmpeg (threads)
4 janvier 2014, par mistypantsI'm writing a batch script to automate one of my video editing processes. I've gotten everything done up to the final step, when I concatenate the video intro (1080.avi) with the video itself, then output. Here's the concatenate part of the script :
ffmpeg -i 1080.avi -i %input%-lossless.avi ^
-filter_complex "[0:0] [0:1] [1:0] [1:1] concat=n=2:v=1:a=1 [v] [a]" ^
-map "[v]" -map "[a]" ^
-c:v libx264 -preset veryslow -pix_fmt yuv420p ^
-b:a 160k ^
-threads 2 %input%-final.mp4It seems to work fine, but my computer overheats (it's a laptop) while it runs. I had this problem with just simple conversions and ffmpeg, so I added the -threads 2 part which eliminated the problem. It's back now.
Did I mess up something in the script, or does concatenating just use more of the CPU ? If the latter, could I just decrease it to 1 thread ?