Recherche avancée

Médias (91)

Autres articles (33)

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

  • Streaming is not save on wowza server

    19 septembre 2015, par Android

    I have issue with streaming save to server.
    We have two case :

    case 1.
    I have got one problem on streaming by Javacv with ffmpeg, streaming is work fine and i can see in wowza testing as well as vlc
    But that streaming is not save in wowza server, only save audio file in server.

    case 2.
    I have done streaming by livestreaming library and that work fine as well as save in wowza server.

    both case server is used same but one time it work fine other time it not.

    I have checked settings in wowza server to save any stream and it perfect everything.

  • vf_colorspace : Add support for full range yuv

    26 août 2016, par Vittorio Giovara
    vf_colorspace : Add support for full range yuv
    

    Whenever a full range video is input, since the YUVJ* formats are not
    listed as supported for this filter, a range reduction takes place
    through the auto-inserted format filter, forcing the conversion to
    operate on a limited range,

    However the filter handles full range videos perfectly fine, so adding
    support to YUVJ* formats will allow skipping a conversion step, while
    providing completely identical results.

    Signed-off-by : Vittorio Giovara <vittorio.giovara@gmail.com>
    Reviewed-by : "Ronald S. Bultje" <rsbultje@gmail.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavfilter/vf_colorspace.c
  • ffmpeg is cutting video length incorrectly

    1er mars 2018, par jameshwart lopez

    I use ffmpeg to check the length of the video and to cut video.

    I have a video with the lenght of 19.458333 seconds that’s why i want to cut it to only have 19 seconds because i don’t want the floating point.

    I check the video length using below command

    ffprobe -i "video.avi" -show_entries format=duration -v quiet -of csv="p=0"

    And I use below command to cut video the video

    ffmpeg -i  "video.avi" -ss 00:00:00 -t 00:00:19.000 -c copy out.mp4

    or

    ffmpeg -i  "video.avi" -ss 00:00:00 -t 19 -c copy output.avi

    The problem i have is when i cut the video with the above command and check the length the output file’s length is 19.018 seconds. Can someone help me with this problem ?