Recherche avancée

Médias (1)

Mot : - Tags -/livre électronique

Autres articles (59)

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

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

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

  • aarch64 : Add asm for mbtree fixed point conversion

    24 avril 2016, par Janne Grunau
    aarch64 : Add asm for mbtree fixed point conversion
    

    pack is 7 times faster and unpack is 9 times faster on a cortex-a53
    compared to gcc-5.3.

    mbtree_fix8_pack_c : 41534
    mbtree_fix8_pack_neon : 5766
    mbtree_fix8_unpack_c : 44102
    mbtree_fix8_unpack_neon : 4868

    • [DH] common/aarch64/mc-a.S
    • [DH] common/aarch64/mc-c.c
  • SharedLib dependency @ Mixed mode APK

    6 mars 2016, par NadavRub
    1. I am building a mixed mode Android project, the project is using the native ffmpeg
    2. The Libs are
      2.1. libavutil.so -> libavutil.so.51
      2.2. libavcodec.so -> libavcodec.so.54
      2.3. libavformat.so -> libavformat.so.54
    3. My Java code include the following JNI section to load the native libs :
      static
       System.loadLibrary("avutil") ;
       System.loadLibrary("avcodec") ;
       System.loadLibrary("avformat") ;

    4. ’libavcodec.so’ depends on ’libavutil.so.51’ AND NOT on ’libavutil.so’.
    5. When running my activity System.loadLibrary("avcodec") ; excepts with "could not load needed library ’libavutil.so.51’ for ’libavcodec.so’ (Library ’libavutil.so.51’ not found)"
    6. On my Android.mk I have the following section to have the native libs added to the APK :

      include $(CLEAR_VARS)
      LOCAL_MODULE := mylib
      LOCAL_SRC_FILES := ../../../mylib/libmylib.so
      include $(PREBUILT_SHARED_LIBRARY)

    7. replacing libmylib.so with libmylib.so.%some number% cause the build to fail with [LOCAL_SRC_FILES should point to a file ending with ".so"]


      Having the above in mind, how can I have libavcodec loading w/o the dependency problem ?
      • Can I fix libavcodec.so dependency to point to libavutil.so and not to libavutil.so.51 ?
      • Can I change Android.mk so it will be able to pack libavutil.so.51 ( non .SO extention ) ? will it then be loadable using ’System.loadLibrary’ ?.

        Any help will be appreciated !!!

        Nadav at Sophin
  • how to give random name to the file in ffmpeg

    18 mars 2020, par amit9867

    How can i give random name to a output file in ffmpeg.

    I want to give the filename as current date_time (ex.2020-3-18-10-13-4.mkv).

    I don’t want to give a fix name such as output.mkv.

    import os
    import subprocess
    import tkinter as tk
    import datetime

    root = tk.Tk()

    os.chdir(f'C://Users/{os.getlogin()}/desktop/')
    def recording_voice():
     global p
     p =subprocess.Popen('ffmpeg -i video.avi -i audio.wav -c:v copy -c:a aac -strict experimental -strftime 1 "%Y-%m-%d_%H-%M-%S.mkv"' ,stdin=subprocess.PIPE)


    rec_btn = tk.Button(text='Start merging', width=20, command=recording_voice)
    rec_btn.pack()


    root.mainloop()