Recherche avancée

Médias (91)

Autres articles (58)

  • Qualité du média après traitement

    21 juin 2013, par

    Le bon réglage du logiciel qui traite les média est important pour un équilibre entre les partis ( bande passante de l’hébergeur, qualité du média pour le rédacteur et le visiteur, accessibilité pour le visiteur ). Comment régler la qualité de son média ?
    Plus la qualité du média est importante, plus la bande passante sera utilisée. Le visiteur avec une connexion internet à petit débit devra attendre plus longtemps. Inversement plus, la qualité du média est pauvre et donc le média devient dégradé voire (...)

  • Dépôt de média et thèmes par FTP

    31 mai 2013, par

    L’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
    Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...)

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

Sur d’autres sites (7125)

  • OSError : [Errno 13] Permission denied with FFMPEG

    14 février 2015, par jing yi

    I have just started using Python and am looking at using python to read mp3 files. I tried to use ffmpeg to read the mp3 file, however, i kept getting error of permission denied.

    Appreciate if you could advise me on how to resolve this error !

    Thank you !

    $ cd '/Users/jingyi/Downloads/' && '/usr/bin/pythonw'  '/Users/jingyi/Downloads/sound detection.py'  && echo Exit status: $? && exit 1
    Traceback (most recent call last):
     File "/Users/jingyi/Downloads/sound detection.py", line 14, in <module>
       pipe = sp.Popen(command, stdout = sp.PIPE)
     File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/subprocess.py", line 709, in __init__
       errread, errwrite)
     File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/subprocess.py", line 1326, in _execute_child
       raise child_exception

    OSError: [Errno 13] Permission denied
    </module>

       FFMPEG_BIN = '/Users/jingyi/Downloads/ffmpeg'
       #INPUT_Sound = '/Users/jingyi/Downloads/Snore.mp3'

       import subprocess as sp

       command = [ FFMPEG_BIN,
               '-i', '/Users/jingyi/Downloads/Snore.mp3',
               '-f', 's16le',
               '-acodec', 'pcm_s16le',
               '-ar', '44100', # ouput will have 44100 Hz
               '-ac', '2', # stereo (set to '1' for mono)
               '-']
       pipe = sp.Popen(command, stdout = sp.PIPE)
  • ffmpeg Cannot create temporary file in C :\WINDOWS~: Permission denied

    26 juin 2021, par Bakh

    i get this error trying to build ffmpeg from git bash

    &#xA;

    $ make&#xA;CC      libavdevice/alldevices.o&#xA;Cannot create temporary file in C:\WINDOWS\: Permission denied&#xA;make: *** [ffbuild/common.mak:67: libavdevice/alldevices.o] Error 3&#xA;

    &#xA;

    I tried to take ownership of C :\windows but the problem persists.

    &#xA;

  • ffmpeg installed via snap return cannot create user data directory : /home/user/snap/ffmpeg/1286 : Permission denied

    10 juin 2021, par Jintor

    I just installed ffmpeg via snap

    &#xA;

    when I log to any user and I do snap run ffmpeg -i anyfile

    &#xA;

    i always see cannot create user data directory : /home/user/snap/ffmpeg/1286 : Permission denied

    &#xA;

    how can this be fixed ?

    &#xA;