Recherche avancée

Médias (0)

Mot : - Tags -/diogene

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

Autres articles (79)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

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

  • Play RTP stream on Android

    11 décembre 2016, par Othman Mohammad

    I’m using ffmpeg to stream microphone to an Android application.
    So far, I successfully managed to stream the audio (Test it with ffplay and VLC) :

    ffmpeg -ar 48000 -f alsa -i hw:0 -acodec mp2 -b:a 384k -f rtp rtp://127.0.0.1:1234

    Now how can I play the stream on an Android application ?

    Thank you

  • tag refuses to play mp4 video converted from MOV

    27 décembre 2014, par MightyPork

    I have a video I want to embed using the html5 video tag :

    I’ve converted it using ffmpeg :

    ffmpeg -i P6135199.MOV -vcodec libx264 -acodec aac helios.mp4

    And I try to embed it as follows :

    <video src="helios.mp4" controls="controls">Get a better browser!</video>

    However, Chrome doesn’t play the video, only offers to download it (same as it did before I converted the video). Firefox has the same problem.

    I’ve tested and other mp4 files (from my phone) play just fine.

    What’s the problem ? Did I convert it wrong ?

  • How to play video at exact seek time ?

    3 mai 2016, par RanceA

    I was working on a video player of an app and I ran into a problem.

    I need a video’s playing cycle locked into a specified time interval. For instance, I need a video loop to play from 00:04 to 00:08.

    My dilemma is, the video only has keyframes at 00:00 and 00:10, MediaPlayer.seekTo(4000) will seek the start time to 00:10 which is not what I expected. I need the video to play at a precise time, 00:04 to 00:08, not 00:00 to 00:10.

    FFPlay also supports AVSEEK_FLAG, but none of the flags seem to work in my case.

    Maybe playing at 00:00 then fast-forward encoding to 00:04 is a good idea, but I have no idea how to implement that. My FFMPEG experience is poor.

    Any help would be greatly appreciated.