
Recherche avancée
Autres articles (57)
-
List of compatible distributions
26 avril 2011, parThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...) -
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 is the first MediaSPIP stable release.
Its official release date is June 21, 2013 and is announced here.
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
Le plugin : Podcasts.
14 juillet 2010, parLe problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
Types de fichiers supportés dans les flux
Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...)
Sur d’autres sites (7320)
-
Revision 77114 : La date de naissance est un champs date et pas datetime, on passe ...
9 octobre 2013, par kent1@… — LogLa date de naissance est un champs date et pas datetime, on passe l’option adéquate à la saisie
Nécessite saisie version 1.36.0
Petites corrections de langue
Version 3.3.6 -
How to modify music pitch in audio of video file and still sound natural
9 janvier 2020, par Keith BennettI have some karaoke .mp4 video files (legally obtained) for Thai songs, and want to convert the pitch downward to fit my singing range. I’ve gotten most of the way there thanks to https://superuser.com/questions/292833/how-to-change-audio-frequency/1076762#1076762
using a command line like this :ffmpeg -i in.mp4 -af 'asetrate=35280.0,atempo=1.25' out.mp4
...but the instruments and human singing voices don’t sound natural at the modified pitch.
Is there a better way to change the pitch ? I know some commercial products can do this.
By the way, I wrote a Ruby script to simplify this ffmpeg call ; it’s at https://gist.github.com/keithrbennett/9ba7043792bfb2fcc92d615076a8413f. It enables you to specify a single factor, and modifies both pitch and tempo accordingly.
-
FFMPEG -ss 00:22:58 -to 01:37:45 -i input.mkv -c copy output2.mp4 first 2 seconds image is frozen
15 août 2022, par g3443tdfgdfgdfgi'm making clips from an .mkv file using ffmpeg. First i used


ffmpeg -i input.mkv -ss 00:22:58 -to 01:37:45 -c:v copy -c:a copy output.mp4 



but the first 1-2 seconds were only sound without image. Now i'm using the command


ffmpeg -ss 00:22:58 -to 01:37:45 -i 2022_05_26-ABCNews.mkv -c copy output2.mp4 



But even tho the first seconds now have image they still look kind of patchy and frozen, i understand that this might be due to the nature of the .mkv file itself, but i wanted to know if anyone have any command that better perform this function and allow to save those first 1-2 seconds.