Recherche avancée

Médias (91)

Autres articles (81)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

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

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

Sur d’autres sites (10850)

  • Installation of FFMPEG for Python in WIndows

    10 février 2024, par user3587175

    I'm trying to use this python video converter and I couldn't even run the test. I read in the manual that I had to install FFMPEG separately so I did (I created the folder in C :\, the enviroment variable "path" and tested it and worked) but still doesn't work.

    



    When I run the command :

    



    python setup.py test


    



    I get this :

    



    Traceback (most recent call last):&#xA;  File "setup.py", line 51, in <module>&#xA;    packages=[&#x27;converter&#x27;],&#xA;  File "C:\Python27\lib\distutils\core.py", line 151, in setup&#xA;    dist.run_commands()&#xA;  File "C:\Python27\lib\distutils\dist.py", line 953, in run_commands&#xA;    self.run_command(cmd)&#xA;  File "C:\Python27\lib\distutils\dist.py", line 972, in run_command&#xA;    cmd_obj.run()&#xA;  File "setup.py", line 20, in run&#xA;    raise Exception(&#x27;tests failed&#x27;)&#xA;Exception: tests failed&#xA;</module>

    &#xA;&#xA;

    When I run this example code :

    &#xA;&#xA;

    from converter import Converter&#xA;c = Converter()&#xA;&#xA;info = c.probe(&#x27;test1.ogg&#x27;)&#xA;&#xA;conv = c.convert(&#x27;test1.ogg&#x27;, &#x27;/tmp/output.mkv&#x27;, {&#xA;    &#x27;format&#x27;: &#x27;mkv&#x27;,&#xA;    &#x27;audio&#x27;: {&#xA;        &#x27;codec&#x27;: &#x27;mp3&#x27;,&#xA;        &#x27;samplerate&#x27;: 11025,&#xA;        &#x27;channels&#x27;: 2&#xA;    },&#xA;    &#x27;video&#x27;: {&#xA;        &#x27;codec&#x27;: &#x27;h264&#x27;,&#xA;        &#x27;width&#x27;: 720,&#xA;        &#x27;height&#x27;: 400,&#xA;        &#x27;fps&#x27;: 15&#xA;    }})&#xA;&#xA;for timecode in conv:&#xA;    print "Converting (%f) ...\r" % timecode&#xA;

    &#xA;&#xA;

    I get this :

    &#xA;&#xA;

    Traceback (most recent call last):&#xA;  File "C:\Users\USER\worspace_pyth\cosa\prueba1.py", line 3, in <module>&#xA;    c=Converter()&#xA;  File "C:\Python27\converter\__init__.py", line 27, in __init__&#xA;    ffprobe_path=ffprobe_path)&#xA;  File "C:\Python27\converter\ffmpeg.py", line 345, in __init__&#xA;    raise FFMpegError("ffmpeg binary not found: " &#x2B; self.ffmpeg_path)&#xA;converter.ffmpeg.FFMpegError: ffmpeg binary not found: ffmpeg&#xA;</module>

    &#xA;&#xA;

    I can't understand what else I need to do for this to work. Thanks for your help.

    &#xA;

  • Installation of FFMPEG for Python in WIndows

    15 janvier 2017, par user3587175

    I’m trying to use this python video converter and I couldn’t even run the test. I read in the manual that I had to install FFMPEG separately so I did (I created the folder in C :\, the enviroment variable "path" and tested it and worked) but still doesn’t work.

    When I run the command :

    python setup.py test

    I get this :

    Traceback (most recent call last):
     File "setup.py", line 51, in <module>
       packages=['converter'],
     File "C:\Python27\lib\distutils\core.py", line 151, in setup
       dist.run_commands()
     File "C:\Python27\lib\distutils\dist.py", line 953, in run_commands
       self.run_command(cmd)
     File "C:\Python27\lib\distutils\dist.py", line 972, in run_command
       cmd_obj.run()
     File "setup.py", line 20, in run
       raise Exception('tests failed')
    Exception: tests failed
    </module>

    When I run this example code :

    from converter import Converter
    c = Converter()

    info = c.probe('test1.ogg')

    conv = c.convert('test1.ogg', '/tmp/output.mkv', {
       'format': 'mkv',
       'audio': {
           'codec': 'mp3',
           'samplerate': 11025,
           'channels': 2
       },
       'video': {
           'codec': 'h264',
           'width': 720,
           'height': 400,
           'fps': 15
       }})

    for timecode in conv:
       print "Converting (%f) ...\r" % timecode

    I get this :

    Traceback (most recent call last):
     File "C:\Users\USER\worspace_pyth\cosa\prueba1.py", line 3, in <module>
       c=Converter()
     File "C:\Python27\converter\__init__.py", line 27, in __init__
       ffprobe_path=ffprobe_path)
     File "C:\Python27\converter\ffmpeg.py", line 345, in __init__
       raise FFMpegError("ffmpeg binary not found: " + self.ffmpeg_path)
    converter.ffmpeg.FFMpegError: ffmpeg binary not found: ffmpeg
    </module>

    I can’t understand what else I need to do for this to work. Thanks for your help.

  • doc/developer.texi : Add a code of conduct

    18 mai 2016, par Michael Niedermayer
    doc/developer.texi : Add a code of conduct
    

    See : [FFmpeg-devel] [Vote] Code of Conduct

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] doc/developer.texi