Recherche avancée

Médias (91)

Autres articles (61)

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

  • Soumettre améliorations et plugins supplémentaires

    10 avril 2011

    Si vous avez développé une nouvelle extension permettant d’ajouter une ou plusieurs fonctionnalités utiles à MediaSPIP, faites le nous savoir et son intégration dans la distribution officielle sera envisagée.
    Vous pouvez utiliser la liste de discussion de développement afin de le faire savoir ou demander de l’aide quant à la réalisation de ce plugin. MediaSPIP étant basé sur SPIP, il est également possible d’utiliser le liste de discussion SPIP-zone de SPIP pour (...)

  • Gestion de la ferme

    2 mars 2010, par

    La ferme est gérée dans son ensemble par des "super admins".
    Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
    Dans un premier temps il utilise le plugin "Gestion de mutualisation"

Sur d’autres sites (5243)

  • ffmpeg convert images with name pattern into video [duplicate]

    27 mars 2017, par passion

    This question already has an answer here :

    I am converting png images into a video using ffmpeg.

    My png file names are like this :

    image1_xy.png
    image2_xy.png
    image3_xy.png
    image4_xy.png
    ...
    image10_xy.png
    image11_xy.png
    ...
    image100_xy.png
    image101_xy.png
    ...

    my script is the following :

    ffmpeg -r 1 -f image2 -s 1920x1080 -i image%03d.png -vcodec libx264 -crf 25  -pix_fmt yuv420p test.mp4

    which is working only when the file names are like image001.png , image002.png...

    How should i modify this to take into account the file name pattern I have ?

    update

    i don’t mind if the answer suggests to use a bash script to rename files in the order they appear with the right pattern.

  • avcodec/flashsvenc : Fix packet size calculation

    19 novembre 2022, par Andreas Rheinhardt
    avcodec/flashsvenc : Fix packet size calculation
    

    The earlier code did not account for the frame header as well
    as the block headers ; furthermore, in case a large part of
    a block is unused (due to padding), the output size may
    exceed 3 * width * height (where the dimensions correspond
    to the visible pixels) due to the overhead of the zlib header,
    so use the padded dimensions to calculate the maximum packet size
    (which is also what the actual call to compress2() uses).
    Fixes ticket #10053.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavcodec/flashsvenc.c
  • FFMPEG - Converting MKV to MP4 on Gdrive using rclone mount. ERROR : output file #0 does not contain any stream

    30 avril 2020, par Enrique Torrez

    I am trying to convert video files from my back-up rip files library that I have on my Gdrive account. I was successfully able to set up a dedicated server + plexserver + rclone + gdrive. I have files that are big and my family are not able to stream them due to the poor internet service that I have in my country. So I am trying to reduce the file size so it can be streamed directly

    &#xA;&#xA;

    My rclone mount script is :

    &#xA;&#xA;

    rclone mount gcache: /path  --tpslimit 5 --allow-other --acd-templink-threshold 0 --stats 1s --buffer-size 64M --timeout 5s --contimeout 5s --max-read-ahead 1G --drive-chunk-size 64M -vv &amp;&#xA;

    &#xA;&#xA;

    And my ffmpeg script is :

    &#xA;&#xA;

    ffmpeg -i origen.mkv -c:v copy -movflags faststart -strict -2 convertedfile.mp4&#xA;

    &#xA;&#xA;

    I had the following errors :

    &#xA;&#xA;

    moov atom not found&#xA;

    &#xA;&#xA;

    I used this command :

    &#xA;&#xA;

    AtomicParsley myVideo.mp4 -P&#xA;

    &#xA;&#xA;

    Now when I execute

    &#xA;&#xA;

    ffmpeg -i convertfile.mp4&#xA;

    &#xA;&#xA;

    I get this error :

    &#xA;&#xA;

    Output file #0 does not contain any stream&#xA;

    &#xA;&#xA;

    What am I doing wrong ? I need some help please.

    &#xA;