Recherche avancée

Médias (2)

Mot : - Tags -/plugins

Autres articles (37)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

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

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

Sur d’autres sites (7200)

  • File created in subprocess.run not found by os.listdir()

    13 novembre 2019, par Abitbol

    I am using subprocess to launch an instance of ffmpeg extracting frames in a folder. Then I do os.listdir on that same folder and it returns an empty list ; off course I would except to see the files created by ffmpeg listed.

    Here is a minimal example

    import os
    import subprocess

    folder = 'generated'
    subprocess.run(['ffmpeg', '-i', 'input.mp4', '-vf', 'fps=4', f'{folder}/%05d.png'])
    print(os.listdir(folder))  # []

    I can testify that the files are created while the script is running.

    In the full example I am using ffmpeg complex filter to generate two output, I don’t think that is the source of the problem.

  • FLAC__stream_encoder_finish : Sanity improvement

    30 janvier 2017, par Erik de Castro Lopo
    FLAC__stream_encoder_finish : Sanity improvement
    

    Previously this function would abort or crash if passed `NULL` for
    the encoder. Now it just returns without crashing or aborting which
    is far more sane behaviour (ie much like FLAC__stream_encoder_delete).

    • [DH] src/libFLAC/stream_encoder.c
  • FFMPEG exec exit code 126

    17 mai 2020, par Ali Lord

    here is my code for FFMPEG

    



    $mp3path=realpath("1.mp3");&#xA;$cmd = "/usr/include/ffmpeg -i $mp3path -ab 128 /home/swiftfa1/public_html/output.mp3 2>&amp;1";&#xA;exec($cmd, $output, $value);&#xA;echo &#x27;<pre>&#x27;; print_r($output); echo &#x27;</pre>&#x27;;&#xA;echo &#x27;<pre>&#x27;; print_r($value); echo &#x27;</pre>&#x27;;&#xA;exit;&#xA;

    &#xA;&#xA;

    and here is my result :

    &#xA;&#xA;

    Array&#xA;(&#xA;    [0] => sh: /usr/include/ffmpeg: Is a directory&#xA;)&#xA;126&#xA;

    &#xA;&#xA;

    I used whereis for ffmpeg path and searched a lot but can't solve my issue. any command returns 126 !

    &#xA;