Recherche avancée

Médias (91)

Autres articles (103)

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

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs

    12 avril 2011, par

    La manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
    Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.

Sur d’autres sites (12771)

  • 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;