Recherche avancée

Médias (2)

Mot : - Tags -/documentation

Autres articles (51)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

  • 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

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

Sur d’autres sites (7238)

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

  • 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 !

  • 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 ?