Recherche avancée

Médias (91)

Autres articles (60)

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP 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.

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

  • Support de tous types de médias

    10 avril 2011

    Contrairement à 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 (6160)

  • ffmpeg : Concat multiple mp4 with no audible delay between clips

    16 novembre 2014, par Geuis

    I have several dozen mp4 clips that all have the same resolution, codecs, etc. I’m trying to combine them into a single file using ffmpeg, but there always seems to be a slight audio delay between the clips. My problem is that I’d like them to be seamless.

    Been following the steps here, https://trac.ffmpeg.org/wiki/How%20to%20concatenate%20(join,%20merge)%20media%20files

    There’s always a slight delay between the files, which is especially noticeable in the audio.

    Is there a recommended way to merge video files with no delay between them ?

  • FFMPEG image resize not working

    8 décembre 2015, par Soundhar Raj

    FFmpeg version 0.6.5 is installed on my web server.

    In my website mp4 videos allowed to upload, that part is done.
    Now i am working on create a thumbnail of the video and then resize it.

    The following links are I referred.

    https://trac.ffmpeg.org/wiki/Create%20a%20thumbnail%20image%20every%20X%20seconds%20of%20the%20video

    https://trac.ffmpeg.org/wiki/Scaling%20(resizing)%20with%20ffmpeg

    This is the command i used to create a thumbnail from video, this command is working.

    $cmd = "ffmpeg -i test.mp4 -ss 0 -vframes 1 out.png";

    After creating the thumbnail, I tried the following the command to resize it, but this is not working.

    $cmd = 'ffmpeg -i out.png -vf scale=210:-1 output_320x240.png';

    And Some other commands i have tried

    $cmd = "ffmpeg -ss 10 -i test.mp4 -vframes 1 -filter scale=-1:150,crop=200:150 output.jpg";

    $cmd = "ffmpeg -itsoffset -1 -i test.mp4 -vframes 1 -filter:v scale=280:-1 output.jpg";

    In my localhost I used the following command to create thumbnail and resize in a single command, but this is also not working in the server.

    $ffmpeg = 'C:\\ffmpeg\\bin\\ffmpeg';
    $video = 'test.mp4';
    $cmd = "$ffmpeg -itsoffset -1 -i $video -vframes 1 -filter:v scale=\"210:-1\"  thumbnail.png";

    Thanks to all

  • Ffmpeg for Windowsphone 8

    11 mai 2015, par prakash

    I came across this urls
    1.https://github.com/pinger-inc/FFMPEG_WindowsPhone
    2.https://trac.ffmpeg.org/wiki/CompilationGuide/WinRT

    I am trying to compile ffmpeg for windows phone 8. I able to compile successfully but I am missing the ffmpeg.lib file after compilation. I am trying to compile this because of the windows phone certification issue we faced while submitting to the store.

    "The native API api-ms-win-core-processthreads-l1-1-1.dll:GetProcessTimes() isn’t allowed in assembly FFMPEGRuntime.dll. Update it and then try again."