Recherche avancée

Médias (10)

Mot : - Tags -/wav

Autres articles (80)

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

  • Videos don't play in Android Webview after resizing with avconv

    23 juillet 2020, par Verode

    I upload original mp4 video file to the server and it plays in all browsers, including Android webview app.

    


    <video class="video" controls="controls" autobuffer="autobuffer">&#xA;<source src="video.mp4" type="video/mp4">&#xA;Your browser does not support the video tag.&#xA;</source></video>&#xA;

    &#xA;

    I have read in Stackoverflow that in some cases adding "controls autobuffer" may help. But it does not help.

    &#xA;

    I tried to access video file by clicking on a link :

    &#xA;

    <a href="http://stackoverflow.com/feeds/tag/video.mp4">Video</a>&#xA;

    &#xA;

    but video does not play.

    &#xA;

    But I need to resize videos to make them smaller.

    &#xA;

    After risizing videos play in all browsers, except Android web view.&#xA;Whats wrong with this ?

    &#xA;

    $resized = exec("avconv -y -i $file -map 0 -c:v libx264 -crf 22 -filter:v scale=\"750:trunc(ow/a/2)*2\" -c:a copy $file2");&#xA;

    &#xA;

    This problem appeared after some Android or Webview update.

    &#xA;

  • Server-side generated video with custom texture - Where to start ?

    12 février 2014, par opznhaarlems

    I am working on a project in which a user can upload an image and then after uploading the image, a video is generated and then displayed, containing the image which was uploaded as some sort of texture/mask. (Like they do in Elf Yourself).

    The original video should contain some sort of placeholder for the image to allow it to move around and be transformed on a matrix.

    I'm not really sure where to start off or how I should even call such a merging/blending process in the first place.

    A few requirements I've came up with so far :
    - The server runs PHP
    - I am able to use GD, Imagick and FFMPEG

    Regards

  • lavf/http: handle case where the server returns a redirect during a seek

    13 avril 2015, par Rodger Combs
    lavf/http: handle case where the server returns a redirect during a seek
    

    txoffer (e.g. http://tori.aoi-chan.com/ ) redirects to the same URI on your
    first request, and serves the actual file on the second. It’s stupid, but AFAIK
    technically compliant. We’d previously see the server not handing back a Range
    header and return an error ; now, instead, we see that there’s a redirect and
    keep track of the offset we want while trying again at the new URL.

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavformat/http.c