Recherche avancée

Médias (2)

Mot : - Tags -/documentation

Autres articles (42)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • Contribute to documentation

    13 avril 2011

    Documentation is vital to the development of improved technical capabilities.
    MediaSPIP welcomes documentation by users as well as developers - including : critique of existing features and functions articles contributed by developers, administrators, content producers and editors screenshots to illustrate the above translations of existing documentation into other languages
    To contribute, register to the project users’ mailing (...)

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

  • SNAP : Simulation and Neuroscience Application Platform [closed]

    19 avril 2024, par S_S

    Is there any documentation/help manual on how to use SNAP (Simulation and Neuroscience Application Platform)1.

    



    I wanted to run the Motor Imagery sample scenario with a .avi file for the stimulus instead of the image. How can that be done ?

    



    The following error is obtained when using the AlphaCalibration scenario which gives code to play an avi file.Any help appreciated

    



    :movies:ffmpeg(warning): parser not found for codec indeo4, packets or times may be invalid.
:movies:ffmpeg(warning): max_analyze_duration 5000000 reached at 5000000
:movies(error): Could not open /e/BCI_Feb2014/SNAP-master/src/studies/SampleStudy/bird.avi
:audio(error): Cannot open file: /e/BCI_Feb2014/SNAP-master/src/studies/SampleStudy/bird.avi
:audio(error): Could not open audio /e/BCI_Feb2014/SNAP-master/src/studies/SampleStudy/bird.avi
:movies:ffmpeg(warning): parser not found for codec indeo4, packets or times may be invalid.
:movies:ffmpeg(warning): max_analyze_duration 5000000 reached at 5000000
:movies(error): Could not open /e/BCI_Feb2014/SNAP-master/src/studies/SampleStudy/bird.avi
:gobj(error): Texture "/e/BCI_Feb2014/SNAP-master/src/studies/SampleStudy/bird.avi" exists but cannot be read.
Traceback (most recent call last):
  File "E:\BCI_Feb2014\SNAP-master\src\framework\latentmodule.py", line 458, in _run_wrap
    self.run()
  File "modules\BCI\AlphaCalibration.py", line 30, in run
Exception during run():
    m = self.movie(self.moviefile, block=False, scale=[0.7,0.4],aspect=1.125,contentoffset=[0,0],volume=0.3,timeoffset=self.begintime+t*self.awake_duration,looping=True)
Could not load texture: bird.avi
  File "E:\BCI_Feb2014\SNAP-master\src\framework\basicstimuli.py", line 348, in movie
    tex = self._engine.base.loader.loadTexture(filename)
  File "E:\BCI_Feb2014\Panda3D-1.8.0\direct\showbase\Loader.py", line 554, in loadTexture
    raise IOError, message
IOError: Could not load texture: bird.avi


    


  • Can FFMPEG binaries be embedded into a commercial closed source application ?

    2 avril 2015, par James

    I am building a closed source, commercial audio processing tool that relies in part on making command line calls to ffmpeg.exe (on Windows).

    Can I legally package an unmodified ffmpeg.exe in my installer and program directory without making my app open source/are there any crucial rules e.g. distributing the ffmpeg source ?

  • FFMPEG : Converting WMA to MP3 Application provided invalid, non monotonically increasing dts to muxer [closed]

    17 août 2024, par Eliot

    I am trying to use FFMPEG to convert WMA to MP3 (the WMA files are ripped from CDs).

    


    I am using the following code from the command line :
G:_SAS\Playlists\FFmpeg\FFmpeg -y -i "C :\Users\eliot\Music\Carmen McRae\Carmen Sings Monk [Bonus Tracks]\09 Man, That Was a Dream (Monk's Dream).wma" -vn -ar 44100 -ac 2 -b:a 192k "C :\Users\eliot\Music\Carmen McRae\Carmen Sings Monk [Bonus Tracks]\09 Man, That Was a Dream (Monk's Dream)Z.mp3"

    


    I am getting the following error :

    


    Stream #0:0 : Audio : mp3, 44100 Hz, stereo, fltp, 192 kb/s
Metadata :
encoder : Lavc61.10.100 libmp3lame
[libmp3lame @ 000001e4fed51cc0] Queue input is backward in time
[mp3 @ 000001e4fecd3940] Application provided invalid, non monotonically increasing dts to muxer in stream 0 : 15668 >= 15513
[out#0/mp3 @ 000001e4fecd3240] video:0KiB audio:4095KiB subtitle:0KiB other streams:0KiB global headers:0KiB muxing overhead : 0.046905%
size= 4097KiB time=00:02:54.75 bitrate= 192.1kbits/s speed=86.1x

    


    The output file plays right, but my music player reports it as damaged.

    


    I have tried to look this up, but the posts I have found have to do with audio and video timing not lining up. I am converting Audio to Audio, which does not apply.

    


    Also, some of the answers are written in HTML code, but I am looking for a batch language solution.