Recherche avancée

Médias (1)

Mot : - Tags -/lev manovitch

Autres articles (39)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Taille des images et des logos définissables

    9 février 2011, par

    Dans beaucoup d’endroits du site, logos et images sont redimensionnées pour correspondre aux emplacements définis par les thèmes. L’ensemble des ces tailles pouvant changer d’un thème à un autre peuvent être définies directement dans le thème et éviter ainsi à l’utilisateur de devoir les configurer manuellement après avoir changé l’apparence de son site.
    Ces tailles d’images sont également disponibles dans la configuration spécifique de MediaSPIP Core. La taille maximale du logo du site en pixels, on permet (...)

  • Configuration spécifique d’Apache

    4 février 2011, par

    Modules spécifiques
    Pour la configuration d’Apache, il est conseillé d’activer certains modules non spécifiques à MediaSPIP, mais permettant d’améliorer les performances : mod_deflate et mod_headers pour compresser automatiquement via Apache les pages. Cf ce tutoriel ; mode_expires pour gérer correctement l’expiration des hits. Cf ce tutoriel ;
    Il est également conseillé d’ajouter la prise en charge par apache du mime-type pour les fichiers WebM comme indiqué dans ce tutoriel.
    Création d’un (...)

Sur d’autres sites (6505)

  • Breaking a video into frames with python

    30 juillet 2012, par user1481112

    I am trying to write a program that deletes frames of a video that don't have a particular symbol in them. My general plan :

    1. Split the audio from the video
    2. Split the video into frames
    3. Run the frames through a subroutine that looks for the symbol, by checking the pixels where it should be for being the correct color, and logging the ones that don't.
    4. Delete those frames and corresponding audio seconds
    5. Splices it all back together.

    I need some help finding libraries that can do this. I was wondering if wxpython could do the detection of pixel color. I have no idea what library could split audio and video and which could edit audio. I know ffmpeg could split the video into frames but after two days of work I still have not been able to install it for python 2.7, so I either need a way to install it or a different library to do it. Any ideas ?

  • FFMPEG : Invalid Pixel Format String -1 when converting MP3 to SWF

    22 janvier 2013, par James Riley

    I'm having an issue with FFMPEG - receiving an error when trying to convert an MP3 into an SWF. The full output contains :

    $ ffmpeg -i track1.mp3 -y -ar '44100' -ab '96k' 'sample.swf'
       FFmpeg version SVN-r26402, Copyright (c) 2000-2011 the FFmpeg developers
       configuration: --enable-libmp3lame --enable-libvorbis --enable-shared --disable-mmx
       libavutil     50.36. 0 / 50.36. 0
       libavcore      0.16. 1 /  0.16. 1
       libavcodec    52.108. 0 / 52.108. 0
       libavformat   52.93. 0 / 52.93. 0
       libavdevice   52. 2. 3 / 52. 2. 3
       libavfilter    1.74. 0 /  1.74. 0
       libswscale     0.12. 0 /  0.12. 0
       Input #0, nsv, from 'track1.mp3':
        Metadata:
          encoder         : Lavf52.93.0
          artist          : Test
          title           : Track02
          album           : Mixtape
          disc            : 1/1
          genre           : Acoustic
          date            : 2013
          track           : 2/2
          album_artist    : Test
          Duration: 00:00:00.00, start: 0.000000, bitrate: -2147483 kb/s
          Stream #0.0: Video: [216][195]2[138] / 0x8A32C3D8, 44318x50468, 24 fps, 24 tbr, 24 tbn, 24 tbc
          Stream #0.1: Audio: h[228][146][142] / 0x8E92E468, 0 channels
       [buffer @ 0x175cd00] Invalid pixel format string '-1'
       Error opening filters!

    I'm aware the FFmpeg version here is old, but the issue is only occuring for one of the MP3s I am testing here. I have many others that are working just fine.

    What can be causing this issue and what steps can I take to resolve this ?

    From what I understand, the pixel format relates to the video output, yet in this case, the SWF is only to be used for audio. I've tested this on a newer version of FFmpeg and the issue isn't occuring - I certainly plan to upgrade FFmpeg on the test server I'm using, but would like to get to the bottom of why this is happening and try to get this particular MP3 converting, where its currently failing despite many others not having the same issue.

    Thanks for any help !

  • Building a console based, music player. What can I use to actually play the media files ?

    1er avril 2014, par avkhatri

    As the title says, I want to create a console based music player. (Something like MOC or CMUS).

    I plan on using ncurses to create the interface, but I'm unsure about what I can use to play the media files. Would the ffmpeg/ffplay API work ?

    Any suggestions would be greatly appreciated.