Recherche avancée

Médias (0)

Mot : - Tags -/gis

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

Autres articles (43)

  • MediaSPIP Init et Diogène : types de publications de MediaSPIP

    11 novembre 2010, par

    À l’installation d’un site MediaSPIP, le plugin MediaSPIP Init réalise certaines opérations dont la principale consiste à créer quatre rubriques principales dans le site et de créer cinq templates de formulaire pour Diogène.
    Ces quatre rubriques principales (aussi appelées secteurs) sont : Medias ; Sites ; Editos ; Actualités ;
    Pour chacune de ces rubriques est créé un template de formulaire spécifique éponyme. Pour la rubrique "Medias" un second template "catégorie" est créé permettant d’ajouter (...)

  • Librairies et logiciels spécifiques aux médias

    10 décembre 2010, par

    Pour un fonctionnement correct et optimal, plusieurs choses sont à prendre en considération.
    Il est important, après avoir installé apache2, mysql et php5, d’installer d’autres logiciels nécessaires dont les installations sont décrites dans les liens afférants. Un ensemble de librairies multimedias (x264, libtheora, libvpx) utilisées pour l’encodage et le décodage des vidéos et sons afin de supporter le plus grand nombre de fichiers possibles. Cf. : ce tutoriel ; FFMpeg avec le maximum de décodeurs et (...)

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

Sur d’autres sites (9806)

  • mov : Export geotag metadata fields

    3 juin 2014, par Martin Storsjö
    mov : Export geotag metadata fields
    

    The ’ ?xyz’ form is used by android devices (and according to apple
    mailing list archives, also by older iOS devices). The ’loci’ field
    (defined in 3GPP 26.244) is used by recent iOS devices.

    Even though the loci field can contain an altitude, it was plain
    0 in my sample. Just export longitude and latitude, in a string
    format matching the one used by the ’ ?xyz’ metadata field.

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DBH] libavformat/mov.c
  • x86 : hpeldsp : kill hpeldsp_mmx.c

    22 mai 2014, par Christophe Gisquet
    x86 : hpeldsp : kill hpeldsp_mmx.c
    

    before :
    1987 decicycles in 8_x2, 262121 runs, 23 skips

    after :
    1902 decicycles in 8_x2, 262112 runs, 32 skips

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavcodec/x86/Makefile
    • [DH] libavcodec/x86/hpeldsp.asm
    • [DH] libavcodec/x86/hpeldsp_init.c
    • [DH] libavcodec/x86/hpeldsp_mmx.c
  • Try to execute ffmpeg in python - subtitles error

    3 septembre 2022, par user103162

    I try to exectute :&#xA;./ffmpeg.exe -i "video.mkv" -vf subtitles="video.mkv" "video.mp4"&#xA;This command works fine

    &#xA;

    But not in my python code

    &#xA;

    &#xA;from pathlib import Path&#xA;import subprocess&#xA;import os&#xA;&#xA;&#xA;ffmpeg = r"D:\Archives\ffmpeg.exe"&#xA;os.chdir(r"D:\temp\video")&#xA;videos = Path(".")&#xA;&#xA;for file_mkv in videos.glob("*.mkv"):&#xA;    file_mp4 = file_mkv.with_suffix(".mp4")&#xA;    subprocess.run([ffmpeg, "-i", file_mkv, "-vf", f&#x27;subtitles="{file_mkv}"&#x27;, file_mp4])&#xA;&#xA;

    &#xA;

    Error :&#xA;[Parsed_subtitles_0 @ 0000020cb26222c0] Unable to open "video.mkv"&#xA;[AVFilterGraph @ 0000020cb715a380] Error initializing filter 'subtitles' with args '"video.mkv"'&#xA;Error reinitializing filters !&#xA;Failed to inject frame into filter network : Invalid argument&#xA;Error while processing the decoded data for stream #0:0&#xA;Conversion failed !

    &#xA;