Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (108)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

Sur d’autres sites (12306)

  • Determine video bitrate Python

    7 juin 2021, par Thunderssucks

    I have a video downloaded from Telegram and I need to determine its bitrate.
I have moviepy (pip install moviepy, not the developer version).
Also, I have ffmpeg, but I don't know how to use it in python.
Also, any other library would work for me.

    


  • Merge commit 'b5f19f7478492307e4b4763aeac3180faf50e17f'

    30 octobre 2017, par James Almer
    Merge commit 'b5f19f7478492307e4b4763aeac3180faf50e17f'
    

    * commit 'b5f19f7478492307e4b4763aeac3180faf50e17f' :
    aac : Split function to parse ADTS header data into public and private part

    Merged-by : James Almer <jamrial@gmail.com>

    • [DH] configure
    • [DH] doc/developer.texi
    • [DH] libavcodec/Makefile
    • [DH] libavcodec/aac_adtstoasc_bsf.c
    • [DH] libavcodec/aac_parser.c
    • [DH] libavcodec/aacadtsdec.c
    • [DH] libavcodec/aacadtsdec.h
    • [DH] libavcodec/aacdec.c
    • [DH] libavcodec/aacdec_fixed.c
    • [DH] libavcodec/aacdec_template.c
    • [DH] libavcodec/adts_header.c
    • [DH] libavcodec/adts_header.h
    • [DH] libavcodec/adts_parser.c
    • [DH] libavcodec/adts_parser.h
    • [DH] libavformat/spdifdec.c
    • [DH] libavformat/spdifenc.c
  • mp4 video on Android

    9 février 2016, par matthewbaskey

    I wanted to convert some old Flash videos to 1 video format so the content will show on a mobile phone. I got some mp4 and it doesn’t work on Android, specifically Chrome 32 running on Android 4.3.

    Click this link to a fiddle

    It is loading the mp4 file on Chrome 32 on Android 4.3, but I thought there is no support for H.256

    Then I went to a this site http://techslides.com/sample-webm-ogg-and-mp4-video-files-for-html5/

    and the mp4 video there works on Android/Chrome.

    I used VLC to check the codecs and they look the same

    H264 - MPEG-4 AVC (part 10) (avc1)
    Resolution: is different (working one is 560x320
    Resolution: mp4 not working is 640x480
    Framerate: working is 30, not working is 12
    Decoded format: Planar4:2:0 YUV

    I then searched the codec then with ffmpeg and I see that
    there is a property called
    compatible_brands : mp42icomavc1

    which is different than the non-working mp4 which has this property set to
    compatible : mp42mp41

    The file sizes are quite different as well. Could this be an issue.

    When I load http://html5test.com the Chrome on Android browser says MPEG-4 is not supported by H.264 is. it doesn’t say anything about the container.

    ok here is some source code, I thought chrome on android doesn’t support mp4 files, but when I load the following on Chrome 32 running on Sony Xperia Tablet running Android 4.3. I had an mp4 file that I converted to webm, but chrome still could not run it. It is 8 MB so perhaps the size is an issue....this mp4 has a different size and frameframe. Other than that I only see compatible version different as mentioned above.

       


       <h4>This is mp4 video</h4>
       <video controls="controls" autoplay="autoplay" preload="auto">
           <source src="http://techslides.com/demos/sample-videos/small.mp4" type="video/mp4">
       </source></video>