Recherche avancée

Médias (91)

Autres articles (28)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

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

  • Ajouter notes et légendes aux images

    7 février 2011, par

    Pour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
    Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
    Modification lors de l’ajout d’un média
    Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)

Sur d’autres sites (4162)

  • after split mp4 file audio is little out of video, please tell me why ?

    27 décembre 2013, par user3138206

    I tried to split mp4 h.264 format video(running time 70min) split 3 min each.
    everything is ok but audio is little out of video

    /usr/bin/ffmpeg -y -i /home/vmark/T2010.mp4 -acodec copy -vcodec copy -ss 1260 -t 180 ./131018_1260_1440.mp4

    is there any wrong option I did ?
    please let me know if you know how to fix this problem and the way to split without audio video sync problem.

    thanks.

    JEONG.

  • Split MP4 In Linux Command Line Interface

    12 septembre 2014, par Baoky chen

    I am trying to split my video using MP4Box but its always stuck at 99% splitting, Its work fine at my window version.

    Is there other ways to split mp4 video other than mp4box, I use ffmpeg and the split causes audio and video sync issue, mp4box work for most video but some it will just stuck at 99%.

    Encode done!
    Storing split-file /srv/www/video.mysite.com/public_html/convert/19173//processing//Video_new_001.mp4 - duration 777.57 seconds
    Splitting: |=================== | (99/100)
  • Is it incorrect to use multiple 'split' filters down the FFmpeg's filter_complex tree ?

    26 octobre 2020, par ed22

    Is it better to use the split filter only once per input (say once per [0:v]) or is it OK to split "down the line" again, like below ?

    


    [0:v]split=2[0v_1][0v_2];&#xA;[0v_1]<do sth="sth" here="here">[result1];&#xA;[0v_2]<do sth="sth" here="here">[result2];&#xA;[result1]split=2[result1_1][result1_2];&#xA;[result1_1]<do some="some" more="more" here="here">[final_result_1];&#xA;[result1_2]<and also="also" something="something" here="here">[final_result_2]&#xA;</and></do></do></do>

    &#xA;