
Recherche avancée
Autres articles (33)
-
Keeping control of your media in your hands
13 avril 2011, parThe vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...) -
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
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 (6473)
-
How to change video speed by ffmpeg ?
17 mai 2019, par Pooja JadavI’m using ffmpeg for video filter.
But, When I changed video speed, that time I got issue
-
Audio is longer than video :
ffmpeg -i INPUT.mp4 -filter:v setpts=0.5*PTS -shortest -y -preset ultrafast OUTPUT.mp4
I want to set audio’s length same as video’s length.
- shortest = to extend audio streams to the same length as the video stream
In my case,
shortest
is not working. Video file and audio file, both are different and then after merging in a video file. Video’s last frame stop and audio is continued working. -
-
How to speed up ffmpeg when working with multiple files ?
6 mai 2019, par OBXI have
100,000
files which I need to convert from.mp3
to.wav
. However, at the moment it takes1
minute to convert10
files each of1
hour duration.Here’s what I tried :
for i in *.mp3
do
ffmpeg -i "$i" -acodec pcm_s16le -ac 1 -ar 16000 "stm/$(basename -s .mp3 "$i").wav"
doneAlso tried
GNU parallel
as well, which takes same time as well :find ./set/ -name "*.mp3" | parallel 'ffmpeg -i {} -acodec pcm_s16le -ac 1 -ar 16000 {.}.wav'
Is there a better hack to process the same in less time ?
-
How to increase compression speed for FFmpeg ?
30 décembre 2022, par MarotiI have used following command for compress video in android.



ffmpeg -y -i /sdcard/DCIM/Camera/VID_20150326_125017.mp4 -strict experimental -s 640x360 -r 25 -vcodec mpeg4 -b 1000k -ab 48000 -ac 2 -ar 22050 /sdcard/videokit/out.mp4




Above command is a work properly, but it's taking too much time for compression.
An 80MB video file takes around 3 minutes to compress to an 8MB file. Is there any way I can reduce this time.