
Recherche avancée
Médias (91)
-
Géodiversité
9 septembre 2011, par ,
Mis à jour : Août 2018
Langue : français
Type : Texte
-
USGS Real-time Earthquakes
8 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
-
SWFUpload Process
6 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
-
La conservation du net art au musée. Les stratégies à l’œuvre
26 mai 2011
Mis à jour : Juillet 2013
Langue : français
Type : Texte
-
Podcasting Legal guide
16 mai 2011, par
Mis à jour : Mai 2011
Langue : English
Type : Texte
-
Creativecommons informational flyer
16 mai 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (41)
-
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 (...) -
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) (...)
-
Support audio et vidéo HTML5
10 avril 2011MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)
Sur d’autres sites (5726)
-
ranlib error while cross-compiling ffmpeg x264 for android on osx 10.8
7 juin 2013, par indaleI wanted to compile a ffmpg x264 lib for android https://github.com/edisonw/android-ffmpeg-x264. I am using Mountain Lion (Mac OSX 10.8.4). I already installed libtool and yasm via brew but still get the following error :
ffmpeg/libavdevice/libavdevice.a: could not read symbols: Archive has no index; run ranlib to add one
collect2: ld returned 1 exit status
make: *** [/Users/Test/github/android-ffmpeg-x264/Project/obj/local/armeabi/libencoding.so] Error 1After that it stuck and I have no Idea why, according to the owner it was possible to build on a Lion (Mac OSX 10.7.x).
Thank you for any help !
-
.NET Wrapper ffmpeg convert to mp4 set size to 1920 x 1080
1er août 2020, par RobertI in my application written in .NET Core I use ffmpeg to convert movie from 3gp to mp4.


var conversionOptions = new ConversionOptions
{
 MaxVideoDuration = TimeSpan.FromSeconds(60),
 VideoAspectRatio = VideoAspectRatio.R16_9,
 VideoSize = VideoSize.Hd1080,
 AudioSampleRate = AudioSampleRate.Hz44100,
 // CustomWidth = 200
};
 
await ffmpeg.ConvertAsync(inputFile, outputFileMp4, conversionOptions);



Convertion works fine, but my source movie is from mobile phone. Its frame size is 1920 x 1080 but the movie is higher than wider.
After conversion with above code the frame is the same but the movie is cuted and it is wider than taller.
I wanted to have original size


-
Combine multiple videos with specific duration
11 août 2020, par Armand KupcisI am going to concat multiple videos so I can get one video file with FFmpeg.


I've found several ways to implement this but all ways I found can't concat with specific duration of each video.


It means they only concat whole videos.


Exactly, what I wanted is to insert video1 into video2 with specific time. While searching several articles related with this, I checked many articles say "It is impossible with ffmpeg".


So I am trying to split video2 into two videos( like video2-1,video2-2) and concat video1, video2-1, video2-2.