Recherche avancée

Médias (0)

Mot : - Tags -/page unique

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

Autres articles (106)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Pas question de marché, de cloud etc...

    10 avril 2011

    Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
    sur le web 2.0 et dans les entreprises qui en vivent.
    Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
    Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
    le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
    Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...)

Sur d’autres sites (13491)

  • Clip a video segment based on start time and end time in PyAv

    4 décembre 2018, par StackOverflowVeryHelpful

    I am using this library ( PyAV ) to convert an m3u8 stream to mkv stream.

    Is there a way to clip a video segment using PyAv. Example if say the video is of length 120 seconds and i want to clip the video from 20 second to 60 second

    Sample FFMPEG command would look something like this

    FFMPEG Command to Clip Video

    Here is my code to do the conversion from m3u8 to mkv

    import av

    input_ = av.open('input.m3u8')
    output = av.open('output.mkv', 'w')

    # setup from one to the other.
    in_stream = input_.streams.video[0]
    out_stream = output.add_stream(template=in_stream)

    for packet in input_.demux(in_stream):

       print(packet)

       # We need to skip the "flushing" packets that `demux` generates.
       if packet.dts is None:
           continue

       # We need to assign the packet to the new stream.
       packet.stream = out_stream

       output.mux(packet)

    output.close()
  • How do I debug on Google Home Hub ?

    19 décembre 2018, par Sheng Ching Lin

    I have built a Google Home Action which is able to display the streaming of the camera. However, I found that some of the streaming of camera are unable to be played. I cannot see any error log so I don’t know how to fix this issue. Can someone help me solve this ? Here is the sample hls streaming url, which is generated by ffmpeg :

    http://52.32.202.112/html/stream.m3u8

  • How to show part of a frame from a 4k IP cam

    15 avril 2022, par BrP

    I'm working with andoroid.js framework to create a simple app that will show the video that is streamed from some IP cam.

    


    I want to add the ability for the user to see only a part of the full video frame that have a resolution of 4k, so for example, if the user want to see the upper left corner of the frame, he can see it like the image is magnified. I'm not sure if this is possible.

    


    Is there any ffmpeg or any way to accomplish this with a library for node ? Can I include ffmpeg with node_modules when I build my app ?