Recherche avancée

Médias (0)

Mot : - Tags -/organisation

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

Autres articles (91)

  • MediaSPIP en mode privé (Intranet)

    17 septembre 2013, par

    À partir de la version 0.3, un canal de MediaSPIP peut devenir privé, bloqué à toute personne non identifiée grâce au plugin "Intranet/extranet".
    Le plugin Intranet/extranet, lorsqu’il est activé, permet de bloquer l’accès au canal à tout visiteur non identifié, l’empêchant d’accéder au contenu en le redirigeant systématiquement vers le formulaire d’identification.
    Ce système peut être particulièrement utile pour certaines utilisations comme : Atelier de travail avec des enfants dont le contenu ne doit pas (...)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • Automated installation script of MediaSPIP

    25 avril 2011, par

    To overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
    You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
    The documentation of the use of this installation script is available here.
    The code of this (...)

Sur d’autres sites (7443)

  • online free media hosting for live streaming

    30 novembre 2013, par Abdul Ali

    wanted to ask two things :

    1- How can we put the output of FFMPEG to a stream (online address to put the stream).

    2- Is there any free service (for testing purpose) to use FFMPEG and pass the output to it for live streaming .

    apologies if am unable to explain properly what is intended.

    to summarize, wish to convert images to video using FFMPEG (have tried the image to video conversion locally and seems to be working) and put the output to an online resource for live streaming and possibly also have VOD (so users who later logon can view at least from some point behind which they have missed).

    regards,

  • Split Video Files and Make them individually playable

    21 juillet 2013, par rash

    I am newbie to this python. I split webm video file into chunks, but i couldn't able to make them individually playable using python program.But it plays after I join the chunks to a single file. I know its due to the absence of header file. Please help me with the codes to attach the header file to the parts to make them indiviually playable. Please reply. Thanks alot in advance.

    Here is the code :

    Client side :

    import socket, os
    import time

    client_socket = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
    client_socket.connect(("localhost", 5005))
    size = 1024

    while True:
       fname = "/home/xincoz/test/conn2.webm"
       fn = client_socket.recv(1024)
       print fn

       fp = open(fname,'wb')
       while True:
           strng = client_socket.recv(int(fn))
           print strng
           if not strng:
               break
           fp.write(strng)
       fp.close()

       print "Data Received successfully"
       exit()

    Server side :

    import os,kaa.metadata  
    import sys,time
    import socket
    import Image

    server_socket = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
    server_socket.bind(("localhost", 5005))
    server_socket.listen(5)

    client_socket, address = server_socket.accept()
    print "Conencted to - ",address,"\n"

    file = '/home/xincoz/Downloads/connect.webm'
    a = kaa.metadata.parse(file)

    print '\n Maybe, pending work'
    file_name = open(file,'rb')
    size=str(os.path.getsize(file))
    print size
    client_socket.send(str(os.path.getsize(file)))
    print file_name
    strng = file_name.read(os.path.getsize(file))
    client_socket.send(strng[0:2000000])
    file_name.close()

    print str(a)+"Meta Data"
    print "Data sent successfully"
  • Will streaming through RTSP affect normal UDP communication ?

    8 mai 2015, par Nyaruko

    I am programming a ground control station for a drone.
    Originally all the data/command communication is through UDP between the PC and the drone.
    Now I am trying to stream video from a IP camera I put on the drone, the video is 640*480 mpeg video.
    And the protocol is RTSP, so I am thinking of using FFMPEG.
    The IP camera, the drone and my PC is all connected to a router.
    The Ip camera, the drone and my PC all have different IP address.

    My question is, in this case, usually, will the streaming affect my data/command communication through UDP and even cause it un-usable ?