Recherche avancée

Médias (1)

Mot : - Tags -/musée

Autres articles (22)

  • Qu’est ce qu’un éditorial

    21 juin 2013, par

    Ecrivez votre de point de vue dans un article. Celui-ci sera rangé dans une rubrique prévue à cet effet.
    Un éditorial est un article de type texte uniquement. Il a pour objectif de ranger les points de vue dans une rubrique dédiée. Un seul éditorial est placé à la une en page d’accueil. Pour consulter les précédents, consultez la rubrique dédiée.
    Vous pouvez personnaliser le formulaire de création d’un éditorial.
    Formulaire de création d’un éditorial Dans le cas d’un document de type éditorial, les (...)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • Selection of projects using MediaSPIP

    2 mai 2011, par

    The examples below are representative elements of MediaSPIP specific uses for specific projects.
    MediaSPIP farm @ Infini
    The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)

Sur d’autres sites (3124)

  • FFMPEG Dash libvorbis page samples error

    9 mai 2015, par Brittel

    When using the guide http://wiki.webmproject.org/adaptive-streaming/instructions-to-playback-adaptive-webm-using-dash to encode several webm streams the audio stream is not correctly encoded by ffmpeg.

    ffmpeg -i input_audio.wav -c:a libvorbis -b:a 128k -vn -f webm -dash 1 audio_128k.webm

    When creating the manifest and loading the stream into ExoPlayer (but the same problem occurs in the reference javascript implementation dash.js), the error states :

    [...] SoftVorbis.cpp:314 CHECK_GE( inHeader->nFilledLen,sizeof(numPageSamples)) failed: 1 vs. 4

    The stream works flawlessly when not including the audio stream in the manifest.

    I’m using ffmpeg version 2.5.6-0ubuntu0.15.04.1

    Does anyone know what the problem might be ?

  • ffmpeg : "invalid syntax" on file name ?

    26 novembre 2017, par Josh Flori

    I am trying to use this line of code in python :

    ffmpeg -i test.mp4 -vf fps=1 out%d.png

    per the documentation here https://trac.ffmpeg.org/wiki/Create%20a%20thumbnail%20image%20every%20X%20seconds%20of%20the%20video

    but python is giving me :

    File "<stdin>", line 1
    ffmpeg -i test.mp4 -vf fps=10 out%d.png
                ^
    SyntaxError: invalid syntax
    </stdin>

    I have imported ffmpeg and have my test.mp4 file exactly where I keep everything else python related. I have looked for a good while and am not sure what I am doing wrong, seems like it should be something simple ? Any ideas ?

    Thanks

  • Merge mp3 files using FFmpeg on Android

    13 mai 2017, par Ali

    I am trying to merge two mp3 files using this command :

    ffmpeg -i "concat:/storage/emulated/0/Recordings/oneone.mp3|/storage/emulated/0/Recordings/twone.mp3" -c copy /storage/emulated/0/Recordings/concated.mp3

    but get this error :

    "concat:/storage/emulated/0/Recordings/oneone.mp3|/storage/emulated/0/Recordings/twone.mp3": No such file or directory

    Even though the both files exist in the directory. I have written this command according to the documentation : https://trac.ffmpeg.org/wiki/Concatenate#protocol

    How do I fix this ? Please help me.