Recherche avancée

Médias (0)

Mot : - Tags -/page unique

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (35)

  • Other interesting software

    13 avril 2011, par

    We don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
    The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
    We don’t know them, we didn’t try them, but you can take a peek.
    Videopress
    Website : http://videopress.com/
    License : GNU/GPL v2
    Source code : (...)

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

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (8454)

  • Combine video using ffmpeg took long time

    19 septembre 2019, par Shijin

    I have two video files,I am trying to mix the video to create a single video with one video on the left and another at the right. For this, I was used FFMPEG with the following command.

    ffmpeg -y -threads 4 -loglevel debug -ss 4.22 -t 6127.514 -i left.webm -ss 0 -t 6131.734 -i right.webm -filter_complex "[0]scale=320:-1,pad=2*iw:2*ih:0:120[left];[1]scale=320:-1[right];[left][right]overlay=main_w/2:120,scale=640:480;[0][1]amix" -shortest composed.mp4

    It is working, But it took a long time and i need to wait for hours to complete the task with large files.
    Anyone can suggest a method to improve performance or an alternative solution ?
    I have already upgraded my server with maximum resources, But not improved.

  • MAINTAINERS : Lauri is still available but is really low on time nowadays

    26 novembre 2024, par Michael Niedermayer
    MAINTAINERS : Lauri is still available but is really low on time nowadays
    

    CC : Lauri Kasanen <cand@gmx.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] MAINTAINERS
  • ffmpeg add closed caption at particular time in a video

    22 août 2017, par user6464170

    I want to add closed caption at particular time, ie from 10 sec to 15 sec in a video using ffmpeg
    like :

    ffmpeg -i video_without_closed_caption.mp4 -ss 00:10 -t 00:05 -i video_closed_caption.mp4 -map 0:v -map 0:a -map 1:s -c:v copy -c:a copy -c:s copy ccei.mp4

    But it does NOT work as required.

    is there any way i can use between(t,5,10) for closed caption or any other option