Recherche avancée

Médias (9)

Mot : - Tags -/soundtrack

Autres articles (54)

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

  • fate : fix sub2video_{basic, time_limited} on big-endian targets

    6 mars 2024, par Sean McGovern
    fate : fix sub2video_basic, time_limited on big-endian targets
    

    The reference file uses BGRA pixel format, so request it here.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] tests/fate/ffmpeg.mak
  • fftools/cmdutils : hide some information listing options from basic help

    22 décembre 2023, par Anton Khirnov
    fftools/cmdutils : hide some information listing options from basic help
    

    They are for advanced usage only and should not clutter basic output.

    • [DH] fftools/ffmpeg_opt.c
    • [DH] fftools/opt_common.h
  • Basic FFmpeg Conversion Error ?

    26 mars 2018, par Sarah Szabo

    I’m trying to convert an .mp4 to a .opus file using ffmpeg. I have a directory on my desktop called Indexing which has a test file called 40.mp4. I’ve tried using the command ffmpeg -i 40.mp4 -b:a 320k 40.opus which always works from a terminal set in the Indexing directory, but trying the same thing using Java always fails :

    NOTE : I’m running on Kubuntu 17.10

    private static final Path INDEXING_PATH = Paths.get("/home/sarah/Desktop/Indexing");

    Process proc = new ProcessBuilder("ffmpeg -i 40.mp4 -b:a 320k 40.opus")
                     .directory(INDEXING_PATH.toFile()).inheritIO().start();

    Yields :

    Exception in thread "main" java.io.IOException: Cannot run program "ffmpeg -i 40.mp4 -b:a 320k 40.opus" (in directory "/home/sarah/Desktop/Indexing"): error=2, No such file or directory
         at java.lang.ProcessBuilder.start(ProcessBuilder.java:1048)

    Here’s a snapshot of the folder :
    Snapshot