
Recherche avancée
Médias (1)
-
The pirate bay depuis la Belgique
1er avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (78)
-
Soumettre bugs et patchs
10 avril 2011Un logiciel n’est malheureusement jamais parfait...
Si vous pensez avoir mis la main sur un bug, reportez le dans notre système de tickets en prenant bien soin de nous remonter certaines informations pertinentes : le type de navigateur et sa version exacte avec lequel vous avez l’anomalie ; une explication la plus précise possible du problème rencontré ; si possibles les étapes pour reproduire le problème ; un lien vers le site / la page en question ;
Si vous pensez avoir résolu vous même le bug (...) -
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. -
Support de tous types de médias
10 avril 2011Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)
Sur d’autres sites (8688)
-
Android ffmpeg command not working for pitch & tempo change
15 juillet 2019, par HardipI’m trying to use below command to change pitch & tempo in my existing mp4 file, can anybody help me to correct ffmpeg command.
ffmpeg [-y,-i,/storage/9016-4EF8/abcd video.mp4,-af,asetrate=r=46722.3224612449211671764955071340,-filter_complex,[0:v]setpts=0.5*PTS[v];[0:a]atempo=2.0[a],-map,[v],-map,[a],-vcodec,mpeg4,/storage/emulated/0/cut_video.mp4]
-
How to change pitch and tempo together, reliably with ffmpeg
12 novembre 2016, par jakeI know how to change tempo with atempo, but the audio file becomes distorted a bit, and I can’t find a reliable way to change pitch. (say, increase tempo and pitch together 140%)
Sox has a speed option, but truncates the volume AND isn’t as widely available as ffmpeg. mplayer has a speed option which works perfectly, but I can’t output without additional libraries.
I seem to understand ffmpeg doesn’t have a way to change pitch (maybe it does recently ?) but is there a way to change frequency or some other flags to emulate changing pitch ? Looked quite far and can’t find a decent solution.
Edit : asetrate:48k*1.4 (assuming originally 48k) doesn’t seem to work, still distortion and pitch doesn’t really change much.
Edit2 : http://superuser.com/a/1076762 this answer sort of works, but the quality is so much lower than
sox speed 1.4
option -
Audio going out of sync when using setpts and tempo in ffmpeg
30 mai 2019, par loveforfire33I am trying to slow down a video and its audio at the same time (mp4). I have tried doing the audio and video separately with code similar to the command below, but still get the same effect.
The audio slowly goes out of sync with the video after roughly 30 seconds (audio goes faster).
-i "INPUT" -filter_complex "[0:v]setpts=1.1*PTS[v] ;[0:a]atempo=0.9[a]" -map "[v]" -map "[a]" "OUTPUT"
Any advice would be appreciated. Thanks in advance.