Recherche avancée

Médias (16)

Mot : - Tags -/mp3

Autres articles (39)

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

  • Librairies et binaires spécifiques au traitement vidéo et sonore

    31 janvier 2010, par

    Les logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
    Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
    Binaires complémentaires et facultatifs flvtool2 : (...)

Sur d’autres sites (5525)

  • Run ffmpeg once but get multiple screenshots

    9 novembre 2017, par user779159

    I get a screenshot from a remote video file using ffmpeg with a command like ffmpeg -ss $TIME -i $URL -frames:v 1 -filter:v $FILTER file.jpg (-ss comes before -i for fast seeking https://trac.ffmpeg.org/wiki/Seeking). $FILTER is how I want to transform the screenshot, like cropping/resizing. In this case it’s "crop=iw-5:ih-5, scale=100:100:force_original_aspect_ratio=increase, crop=100:100")

    If I want to get 3 screenshots, at 3 seconds, 5 seconds, and 14 seconds, I need to run this command 3 separate times, passing 3, 5, and 14 as $TIME. But is it possible to run the command once but have it output multiple screenshot files for the different times ?

    And would ffmpeg do that in a way where it would make the round-trip remote request just 1 time instead of 3 ? In that case it would be more efficient. If not, then maybe it’s better to make the 3 requests separately since I could do it in parallel.

  • Anomalie #4430 : image_reduire gère mal les arrondis

    27 février 2020, par jluc -

    Non c’est le contraire : il y a plein d’errreurs pour ceil
    et je n’en ai trouvé aucune pour round
    Cf le script de test et quelques uns des résultats statistiques sur le wiki

  • Unable to build ; undefined symbols for architecture x86_64 :

    24 mars 2016, par switt

    In the process of trying to create an RTSP screen streaming server, I tried looking at CocoaSplit for an example.

    Problem is, I can’t get it to compile.

    I have FFMpeg installed on my computer using Homebrew following FFMpeg’s guide on https://trac.ffmpeg.org/wiki/CompilationGuide/MacOSX .

    But on compilation, Xcode is throwing out errors such as

    Undefined symbols for architecture x86_64:

    "_cmnMemAlloc", referenced from:_aac_encode_init in libavcodec.a(libvo-aacenc.o)
    "_cmnMemCheck", referenced from:_aac_encode_init in libavcodec.a(libvo-aacenc.o)
    "_cmnMemCopy", referenced from:_aac_encode_init in libavcodec.a(libvo-aacenc.o)
    "_cmnMemFree", referenced from:_aac_encode_init in libavcodec.a(libvo-aacenc.o)
    "_cmnMemSet", referenced from:_aac_encode_init in libavcodec.a(libvo-aacenc.o)

    and so on.

    The header search paths field in project settings has the directory of /usr/local/include in it.

    What seems to be the problem here ?