Recherche avancée

Médias (1)

Mot : - Tags -/iphone

Autres articles (98)

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

  • De l’upload à la vidéo finale [version standalone]

    31 janvier 2010, par

    Le chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
    Upload et récupération d’informations de la vidéo source
    Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
    Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...)

Sur d’autres sites (9154)

  • How to convert byte[] or String to Frame(H264) with javacv ?

    9 février 2020, par oleotiger

    I have received a video from port 11111 with UDP ;
    The video frame is split by 1460Byte as its size exceeds the size of UPD packet.

    while(true){
               data=new byte[2048];//创建字节数组,指定接收数据报的大小
               packet=new DatagramPacket(data,data.length);
               try {
                   socket.receive(packet);//此方法接收到数据报之前会一直阻塞
               } catch (IOException e) {
                   e.printStackTrace();
               }
               String info=new String(packet.getData(),0,packet.getLength());
               frameStr+=info;
               //End of the frame
               if(info.length()!=1460){
                   decode(frameStr);
               }
           }

    How to decode the frame with javacv ? The video is decoded by H264.
    The raw frame is String or byte[].

  • Python loadarff fails for string attributes

    6 novembre 2020, par Vandana Rajan

    I am trying to load an arff file using Python's 'loadarff' function from scipy.io.arff. The file has string attributes and it is giving the following error.

    



    >>> data,meta = arff.loadarff(fpath)&#xA;Traceback (most recent call last):&#xA;  File "<stdin>", line 1, in <module>&#xA;  File "/data/home/eex608/conda3_envs/PyT3/lib/python3.6/site-packages/scipy/io/arff/arffread.py", line 805, in loadarff&#xA;    return _loadarff(ofile)&#xA;  File "/data/home/eex608/conda3_envs/PyT3/lib/python3.6/site-packages/scipy/io/arff/arffread.py", line 838, in _loadarff&#xA;    raise NotImplementedError("String attributes not supported yet, sorry")&#xA;NotImplementedError: String attributes not supported yet, sorry&#xA;</module></stdin>

    &#xA;&#xA;

    How to read the arff successfully ?

    &#xA;

  • fftools/ffmpeg_opt : Fix [u]int64_t specifier string

    18 mars 2020, par Andreas Rheinhardt
    fftools/ffmpeg_opt : Fix [u]int64_t specifier string
    

    PRId64 and PRIu64 already expand to the complete specifier ; adding
    another 'd' at the end is wrong and just leads to warnings that say
    that only an option like '-frames:v 2d' will be used, although said
    option won't be accepted at all ('Expected int64 for frames:v but found
    2d').

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
    Signed-off-by : Marton Balint <cus@passwd.hu>

    • [DH] fftools/ffmpeg_opt.c