Recherche avancée

Médias (2)

Mot : - Tags -/plugins

Autres articles (18)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-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

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

  • 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 (4874)

  • create video from images but repeat the first and the last frame 100 times

    20 septembre 2016, par ryan banze

    I have images in a specific order in a directory

    Order of Images is as follows

    frame2_0000.jpeg

    frame2_0001.jpeg

    frame2_0002.jpeg

    frame2_0003.jpeg

    ....

    ....

    ,etc

    I generate the video with the following command

    "ffmpeg -y -r 23 -i  location_of_image_folder/frame2_%04d.jpeg -c:v libx264 -s 1280*1024 -movflags faststart location_of_output_location.mp4"

    Now I want to create a video such that the first frame is repeated 100 times to create the video and the last frame is repeated 100 times.

    What strategy should I employ here ?

  • matroskadec : parse the channel layout mask for FLAC

    26 mai 2014, par Anton Khirnov
    matroskadec : parse the channel layout mask for FLAC
    

    It is commonly stored in a vorbiscomment block in codec private data.

    • [DH] libavformat/Makefile
    • [DH] libavformat/flacdec.c
    • [DH] libavformat/matroskadec.c
    • [DH] libavformat/oggdec.h
    • [DH] libavformat/oggparsecelt.c
    • [DH] libavformat/oggparseflac.c
    • [DH] libavformat/oggparseogm.c
    • [DH] libavformat/oggparseopus.c
    • [DH] libavformat/oggparsespeex.c
    • [DH] libavformat/oggparsetheora.c
    • [DH] libavformat/oggparsevorbis.c
  • ffmpeg need to run this command for 360 times

    30 juin 2020, par Dévèñdræ Rághùwáñhsí

    FFmpeg need to run this command for 360 times but it fails after 200
or any optimization for this command.

    


    for (int i = 0; i < 360; i++) {
     commandStr = "ffmpeg -y -i /sdcard/videokit/bgimage.jpg -i /sdcard/videokit/disk_round.png - 
     filter_complex [1:v]scale=800:800,setsar=1,rotate=" +
     i + "*PI/180:c=none:ow=rotw(iw):oh=roth(ih)[s];[0][s]overlay=(W-w)/2:(H-h)/2[out] -pix_fmt bgra - 
     strict experimental -s 720x720 -map [out] /sdcard/videokit/image-spin/"+ i + ".png";

     vk.run(GeneralUtils.utilConvertToComplex(commandStr), workFolder, getApplicationContext());
}