Recherche avancée

Médias (91)

Autres articles (61)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Emballe Médias : Mettre en ligne simplement des documents

    29 octobre 2010, par

    Le plugin emballe médias a été développé principalement pour la distribution mediaSPIP mais est également utilisé dans d’autres projets proches comme géodiversité par exemple. Plugins nécessaires et compatibles
    Pour fonctionner ce plugin nécessite que d’autres plugins soient installés : CFG Saisies SPIP Bonux Diogène swfupload jqueryui
    D’autres plugins peuvent être utilisés en complément afin d’améliorer ses capacités : Ancres douces Légendes photo_infos spipmotion (...)

  • Prérequis à l’installation

    31 janvier 2010, par

    Préambule
    Cet article n’a pas pour but de détailler les installations de ces logiciels mais plutôt de donner des informations sur leur configuration spécifique.
    Avant toute chose SPIPMotion tout comme MediaSPIP est fait pour tourner sur des distributions Linux de type Debian ou dérivées (Ubuntu...). Les documentations de ce site se réfèrent donc à ces distributions. Il est également possible de l’utiliser sur d’autres distributions Linux mais aucune garantie de bon fonctionnement n’est possible.
    Il (...)

Sur d’autres sites (6427)

  • Real-time Streaming of AI-Generated Video Frames in a Web Browser [closed]

    5 décembre 2023, par MinKi Jo

    I am attempting to display a real-time AI-generated video. My model produces video frame images sequentially, and my goal is to stream these generated images on a web browser. The audio for the video is already prepared.

    


    I've been looking for tools such as OpenCV-Python, FFmpeg, OBS, and Gradio, but I haven't found the most suitable option for my needs yet. Can you recommend a good option for this ?

    


  • avformat/mpegtsenc : Changed Video PES packet length to 0.

    12 avril 2014, par Graham Booker
    avformat/mpegtsenc : Changed Video PES packet length to 0.
    

    The rational for this is another issue that plex has exposed. When it is
    conducting a transcode of video to HLS for streaming, my father noticed
    artifacts when played on his GoogleTV (NSZ-GT1). He sent me a test file
    and I reproduced it on my device of the same model. It is important to
    note that the artifacts were not present when streaming to VLC or QuickTime
    Player. I copied the command-line that plex used, and conducted all of the
    following tests using FFmpeg git.

    Transcode to HLS : artifacts on playback
    Transcode to TS : playback is fine
    Cat HLS segments into a single TS : playback is fine
    Segment single TS file to segments : artifacts on playback
    Segment single TS file to segments using Apple’s HLS segmenter : playback is
    fine

    At this point I carefully examined the differences between Apple’s HLS
    segmenter output and FFmpeg’s. Among the considerable differences, I
    noticed that the video PES packets always had a 0 length. So I continued :

    Transcode to HLS using FFmpeg with 0 length PES packets : playback is fine.
    Segment single TS to segments with 0 length PES packets : playback is fine.

    All failures mentioned are only on the GTV since it is the only player on
    which I could reproduce artifacts. I only tested the GTV, VLC, and
    QuickTime Player though, so my test case is limited. I do not know if
    other players exhibit this issue.

    Since it was useful last time, I have uploaded the test file as
    hls_pes_packet_length.m4v along with its associated txt file which contains
    the transcode command-line that was used.

    Reviewed-by : Kieran Kunhya <kierank@obe.tv>
    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavformat/mpegtsenc.c
    • [DH] tests/ref/lavf/ts
  • video playing with paperclip ffmpeg

    30 mars 2014, par Ameya Savale

    I've been having problems playing uploaded videos in my ruby on rails app.

    So I am using the paperclip-ffmpeg gem to process my videos when uploaded, and I am able to create a thumbnail of the video but I am not able to play the video. When I right click on the video I am able to download and I can play it using the player on my computer but I am not able to play it in my view. Also when I right click on it the options for "play", "skip", etc. are all blocked. Here is my model :

    class Video &lt; ActiveRecord::Base
       has_attached_file :clip, :styles => {
               :medium => { :geometry => "640x480", :format => &#39;flv&#39;},
               :thumb => {:geometry => "100x100#", :format => &#39;jpg&#39;, :time => 10}
           }, :processors => [:ffmpeg]
       do_not_validate_attachment_file_type(:clip)
    end

    And here is my view :

    <table class="table">
                       <tr>
                           <th>Video</th>
                           <th>Title</th>
                           <th>Caption</th>
                       </tr>
                       &lt;% @video.each do |video| %>
                           <tr>
                               <td>
                                   &lt;%= image_tag video.clip.url(:thumb) %>
                                   &lt;%= video_tag video.clip.url(:medium) %>
                               </td>
                               <td>
                                   &lt;%= label_tag video.title %>
                               </td>
                               <td>
                                   &lt;%= label_tag video.caption %>
                               </td>
                           </tr>
                       &lt;% end %>
                   </table>

    I have also tried using the videojs_rails gem but I wasn't able to play the video using that either. I would greatly appreciate it if someone could help me out, I've been searching for an answer everywhere but haven't come across one that has worked for me.

    Thanks in advance