Recherche avancée

Médias (1)

Mot : - Tags -/epub

Autres articles (37)

  • Contribute to translation

    13 avril 2011

    You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
    To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
    MediaSPIP is currently available in French and English (...)

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

Sur d’autres sites (7083)

  • ros streming with encode h264

    18 mars 2024, par slowmonk
     class ROSImageStream:
def __init__(self):
    self.bridge = CvBridge()
    self.websocket_clients = []
    rospy.init_node('image_stream_node', anonymous=True)
    rospy.Subscriber("/vision/image/color", Image, self.callback)

def callback(self, data):
    cv_image = self.bridge.imgmsg_to_cv2(data, "bgr8")
    _, jpeg = cv2.imencode('.jpg', cv_image, [int(cv2.IMWRITE_JPEG_QUALITY), 50])


    


    Currently, I am attempting to send streaming images via WebSocket. At the moment, I am transmitting them in JPEG-to-byte format and also streaming camera data through a ROS topic in JPEG format.

    


    However, I wish to convert the images to the H.264 format for streaming. Is it feasible to directly implement this Python code to encode images into H.264 format and stream them ? Or, is there a better solution to achieve this ?

    


  • mov : Seek back if overreading an individual atom

    15 juillet 2013, par Martin Storsjö
    mov : Seek back if overreading an individual atom
    

    Reported-by : Mateusz "j00ru" Jurczyk and Gynvael Coldwind
    Cc : libav-stable@libav.org
    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DH] libavformat/mov.c
  • Icecast live stream extract none silent parts into individual files

    18 avril 2020, par Nokoa

    I am looking to split an icecast audio live stream into individual audio files separated by silences. I was able to achieve this with FFMPEG when having the source input file saved locally first. I can't do that because I have 20 streams being monitored and the original files keeps growing and end up taking too much space on my drive.

    &#xA;&#xA;

    Is it possible to do this directly with a live stream audio without saving the full original uncut stream file to drive ?

    &#xA;