Recherche avancée

Médias (1)

Mot : - Tags -/vidéo

Autres articles (55)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

  • Submit enhancements and plugins

    13 avril 2011

    If you have developed a new extension to add one or more useful features to MediaSPIP, let us know and its integration into the core MedisSPIP functionality will be considered.
    You can use the development discussion list to request for help with creating a plugin. As MediaSPIP is based on SPIP - or you can use the SPIP discussion list SPIP-Zone.

  • (Dés)Activation de fonctionnalités (plugins)

    18 février 2011, par

    Pour gérer l’ajout et la suppression de fonctionnalités supplémentaires (ou plugins), MediaSPIP utilise à partir de la version 0.2 SVP.
    SVP permet l’activation facile de plugins depuis l’espace de configuration de MediaSPIP.
    Pour y accéder, il suffit de se rendre dans l’espace de configuration puis de se rendre sur la page "Gestion des plugins".
    MediaSPIP est fourni par défaut avec l’ensemble des plugins dits "compatibles", ils ont été testés et intégrés afin de fonctionner parfaitement avec chaque (...)

Sur d’autres sites (5777)

  • Cant install ffmpeg on my centos 6.8 [migrated]

    6 février 2017, par Cain Nuke

    Hi,

    I am trying to install ffmpeg with this command :

    yum install ffmpeg ffmpeg-devel

    but I get this error

    Loaded plugins: fastestmirror, refresh-packagekit, security
    Setting up Install Process
    Determining fastest mirrors
    Error: Cannot find a valid baseurl for repo: base
    YumRepo Error: All mirror URLs are not using ftp, http[s] or file.
    Eg. Invalid release/
    removing mirrorlist with no valid mirrors: /var/cache/yum/x86_64/$releasever/base/mirrorlist.txt

    Why is that ?

    Thank you.

  • FFMPEG - frame PTS and DTS increasing faster than it should

    20 juillet 2022, par hi im Bacon

    I am pulling footage from an RTSP camera, standardising it, and then segmenting the footage for processing. I am standardising by reducing the resolution and setting the frame rate to 12 fps.

    


    I am encoding in the PTS times the wall time of each frame as the camera is a live source and I'd like to be able to know exactly when a frame is occurring (I'm not fussed that it's not going to be perfectly on, if it's all out by a second or two because of latency that is fine by me)

    


    FFMPEG is run from python subprocessing using the following command :

    


    command = [
    "ffmpeg", "-y",
    "-rtsp_transport", "tcp", URL,
    "-pix_fmt", "yuvj422p",
    "-c:v", "libx264", # Change the video codec to the kinesis required codec
    "-an", # Remove any audio channels
    "-vf", "scale='min(1280,iw)':'min(720,ih)':force_original_aspect_ratio=decrease",
    "-r", "12",
    "-vsync", "cfr",
    "-x264opts", "keyint=12:min-keyint=12",,
    "-f", "segment",  # Set the output format as chuncked segments
    "-segment_format", segment_format,  # Set each segments format E.G. matroska, mp4
    "-segment_time", str(segment_length),  # Set the length of the segment in seconds
    "-initial_offset", str(initial_pts_offset),
    "-strftime", "1",  # Use the strformat notication in naming of the video segements
    "{}/%Y-%m-%dT%H%M%S.{}".format(directory, extension)  # Define the name and location of the segments,
    '-loglevel', 'error'
]


    


    The problem I am having is that the timestamps of the frames increase at a faster than real time rate. The initial offset is set to the time that FFMPEG is kicked off, the frames received should always be less than right now. I am using a segment length of 30 seconds and after only 5 minutes, finished segments will have a start timestamp greater than the present wall time.

    


    The rate of increase looks around 3-4 times faster than it should.

    


    Why is this the case ? how can I avoid this ? is my understand of -r right ?

    


    I believed that -r drops extra frames, evens out the frame times creating new frames where needed, but not actually changing the perceived speed of the footage. The final frame time should not be greater than the segment length away from the first frame time.

    


    I have tried using a system (filter) that sets the PTS time according to the consumer wall time setpts='time(0)/TB' but this has led to quite choppy footage as the frames can be received/processed at different rates based on the connection.

    


    The quality of the segments is great, all the data is there... just getting the times right is seeming impossible.

    


  • ffmpeg Unable to find a suitable output format for 'ffmpeg -i '

    20 mai 2017, par Ramos

    Hi everyone i try to mirror my video file i use this library for ffmpeg

    compile ’com.writingminds:FFmpegAndroid:0.3.2’

    and this is my commande :

    uriPathOut = getInternalDirectoryPath() + "/Movies/3.mp4" ;
    uriPathIn = getInternalDirectoryPath() + "/Movies/1.mp4" ;

    cmd = new String[]"ffmpeg -i",uriPathIn," -vf \"vflip\" -metadata:s:v rotate=180 ",uriPathOut ;

    and i always get this error :

    ’[NULL @ 0xb84192d0] Unable to find a suitable output format for ’ffmpeg -i’
    ffmpeg -i : Invalid argument’

    is there any solution help me please.