Recherche avancée

Médias (1)

Mot : - Tags -/belgique

Autres articles (101)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    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 (...)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

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

Sur d’autres sites (16547)

  • FFmpeg does not always fully concat video ?

    25 juin 2014, par user3550401

    I’m trying to concat two video clips, sometimes i end up with only three fourths of the video, sometimes I only get one half, and sometimes i manage to get the whole thing. Anyone ever deal with this ? Here is my ffmpeg command :

    ffmpeg -i "concat:videos/clip1.ts|videos/clip2.ts"  -ar 44100  -b:a 128k -b:v 800k -vcodeclibx264 -bsf:v h264_mp4toannexb -f mpegts -t 120 videos/output.ts

    I just dont understand why sometimes it works perfectly and other times i only get part of the video.

  • merge/combine two FFMPEG commands together into one command

    26 février 2021, par Mayank Thapliyal

    I have been processing videos for a while and I have been using ffmpeg to make my life easy. But there are two commands which I want to combine into single command :-

    


    Step 1 :- Divide a video vertically into two parts and then stack them horizontally

    


    ffmpeg -i usa.mp4 -filter_complex "[0]crop=iw:ih/2:0:0[top];[0]crop=iw:ih/2:0:oh[bottom];[top][bottom]hstack" -preset fast -c:a copy usa$.mp4

    


    Step 2 :- Combine 3 videos into single video (the video from Step 1 will be in between the start.mp4 and end.mp4)

    


    ffmpeg -i start.mp4 -i usa$.mp4 -i end.mp4 -vsync 2 -filter_complex "[0:v] [0:a] [1:v] [1:a] [2:v] [2:a] concat=n=3:v=1:a=1 [v] [a]" -map "[v]" -map "[a]" usa_.mp4

    


    Can anyone please combine the videos into single command.I will be then able to save a lot of computing time(I guess that)

    


    Thanks in advance

    


  • Speed Up Creation of M3U8 - FFMPEG

    6 septembre 2017, par Kenny Johnson

    we are using ffmpeg to take rtsp video and create an m3u8 so we can stream the video to phones and computers via HLS using Clappr player.

    It works but it takes about 15 seconds for the m3u8 to be created.

    We have tried everything we can think of to speed it up. Just trying to get the video to start quicker.

    Right now it takes about 15 seconds for the video to start. We need to cut it in half.

    Our keyframe and chunk size are both set to 3 right now.

    Anyone have any suggestions ?
    Thanks for your time !