Recherche avancée

Médias (3)

Mot : - Tags -/pdf

Autres articles (61)

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

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

Sur d’autres sites (10346)

  • How to detetc hardware acceleration in ffmpeg

    19 décembre 2020, par Ali Razmkhah

    I am writing c++ program to screen record by ffmpeg 4.3 ! I need to detect hardware acceleration support such as h264_qsv or h264_nvenc without running ffmpeg.exe !

    


    I explored ffmpeg.exe source code and found no results ! some solutions are deprecated or dose not work on 4.3 !
As instance,

    


    avcodec_find_encoder_by_name("h264_qsv")


    


    returns null even it is exist and works properly !

    


  • UnsupportedAudioFileException in LIUM Speaker Diarization after re-sampling

    14 septembre 2016, par RAVI D PARIKH

    I am trying to configure LIUM tool for speaker diarization. This question is a follow up of UnsupportedAudioFileException in LIUM Speaker Diarization

    I have tried re sampling the file using sox and ffmpeg

    I am new to any sorts of programming and i have followed all steps described in LIUM quick start guide and the above link. I still get the same error. I think my input file has issues related to header as mentioned by Nikolay Shmyrev in the above link however i have no clue on how to solve it.

    My code is as below :

    java –jar  C:\Users\Ravi\Desktop\LIUM_SpkDiarization-8.4.1.jar \ --fInputMask= C:\Users\Ravi\Desktop\converted_f2.wav--sOutputMask= C:\Users\Ravi\Desktop\converted_converted_2.seg -–help --doCEClustering

    Error :

    10:52.037 SEVERE AudioFeatureSetFa  FileNotFoundException
    java.io.FileNotFoundException:
           at java.io.FileInputStream.open0(Native Method)
           at java.io.FileInputStream.open(Unknown Source)
           at java.io.FileInputStream.<init>(Unknown Source)
           at com.sun.media.codec.audio.mp3.JS_MP3FileReader.getAudioFileFormat(JS_MP3FileReader.java:82)
           at javax.sound.sampled.AudioSystem.getAudioFileFormat(Unknown Source)
           at fr.lium.spkDiarization.libFeature.AudioFeatureSetFactory.getAudio(AudioFeatureSetFactory.java:162)
           at fr.lium.spkDiarization.libFeature.AudioFeatureSetFactory.MakeFeature(AudioFeatureSetFactory.java:207)
    </init>

    The input file is at https://drive.google.com/file/d/0B7Fqe9EX5JbgT09BcXpSREd4em8/view?usp=sharing

    Input File Name:converted_f2.wav

    I have put the command and the full output of the prompt in a word document at

    https://drive.google.com/file/d/0B7Fqe9EX5JbgUUl6THNCZFgxRnM/view?usp=sharing

    The inpiut file has correct sampling rate and other parameters and thus i am not able to understand the cause of the error.
    Thanks a lot for the help

    Regards,
    Ravi

  • Getting an error from pyffmpeg when running as a submodule

    3 décembre 2023, par Devin Gardner

    I'm working on building an API using pyffmpeg and pytube to download YouTube videos and convert them to .wav files, synced up with some LED animations. I'm importing pyffmpeg in a submodule, which is then imported by yet another submodule. I'm getting the following error when I run the script (both from my entire package, and in the Python shell directly, and on two different devices with two different OSes) :

    &#xA;

    This is the error I get from the shell on my MacBook :

    &#xA;

    Traceback (most recent call last):&#xA;  File "<stdin>", line 1, in <module>&#xA;  File "/path/to/venv/lib/python3.11/site-packages/pyffmpeg/__init__.py", line 163, in convert&#xA;    raise Exception(self.error)&#xA;Exception&#xA;</module></stdin>

    &#xA;

    And this is the error I get on my Raspberry Pi when I run the full program :

    &#xA;

      File "/path/to/venv/lib/python3.11/site-packages/pyffmpeg/__init__.py", line 154, in convert&#xA;    if &#x27;Output #0&#x27; not in stderr:&#xA;                          ^^^^^^&#xA;UnboundLocalError: cannot access local variable &#x27;stderr&#x27; where it is not associated with a value&#xA;

    &#xA;

    I've tracked down the relevant code in the __init__.py file of pyffmpeg, but I'm not sure how to fix the problem.

    &#xA;

            if &#x27;Output #0&#x27; not in stderr:&#xA;            lines = stderr.splitlines()&#xA;            if len(lines) > 0:&#xA;                self.error = lines[-1]&#xA;            else:&#xA;                self.error = ""&#xA;&#xA;            if self.enable_log:&#xA;                self.logger.error(self.error)&#xA;            raise Exception(self.error)&#xA;        else:&#xA;            self.error = &#x27;&#x27;&#xA;            if self.enable_log:&#xA;                self.logger.info(&#x27;Conversion Done&#x27;)&#xA;        return out&#xA;

    &#xA;

    Anyone have any ideas ?

    &#xA;