Recherche avancée

Médias (0)

Mot : - Tags -/upload

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

Autres articles (61)

  • Mise à disposition des fichiers

    14 avril 2011, par

    Par défaut, lors de son initialisation, MediaSPIP ne permet pas aux visiteurs de télécharger les fichiers qu’ils soient originaux ou le résultat de leur transformation ou encodage. Il permet uniquement de les visualiser.
    Cependant, il est possible et facile d’autoriser les visiteurs à avoir accès à ces documents et ce sous différentes formes.
    Tout cela se passe dans la page de configuration du squelette. Il vous faut aller dans l’espace d’administration du canal, et choisir dans la navigation (...)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Problèmes fréquents

    10 mars 2010, par

    PHP et safe_mode activé
    Une des principales sources de problèmes relève de la configuration de PHP et notamment de l’activation du safe_mode
    La solution consiterait à soit désactiver le safe_mode soit placer le script dans un répertoire accessible par apache pour le site

Sur d’autres sites (8268)

  • python how to combine video file and media file without ffmpeg [on hold]

    27 juillet 2017, par daniel yanovsky

    Hello I am working on a program that is recording the screen. And I like to add an audio for the video.
    How can I do it without using ffmpeg.
    I want my program to do so.

  • opening .js file in CMD runs windows script host [migrated]

    6 août 2017, par Alex

    I am installing ffmpeg for node.js.
    When i run ffmpeg by the following command in CMD ; ffmpeg -codecs
    It opens a .js file with windows script host instead of CMD.

    This is because i accidentally pressed windows script host as standard program for .js files.

    I am running this on windows 10 and i cannot find a way to reverse my actions..
    i have tried select CMD as standard program for opening javascript files but this didnt work. It gave me an error that this file type could not be associated with the program chosen.

    I dont know what to do.

  • Video streaming from server to client

    28 juillet 2016, par Johnnylin

    Currently, my program can use ffmpeg to encode yuv420p image into H264 video format and then output to network stream using udp protocol. Then on the client side, a GUI program using VLC library can read the network stream and display the video stream.

    HOWEVER, Using above method, I have to know every client side IP address and recompile the server code to send the network stream to client’s IP address using UDP. I want to implement something like, on the server side, the program will listen to a port (e.g. 1234), waiting for clients’ GUI program to connect, then on the client side, people can login to the GUI program in different computers with different IP addresses to connect to the server asking for network stream.

    What else should I do with my current program ? How can I do that ? Can someone show me a minimum example ?

    EDIT

    I have set up a ffserver, and used my program to send stream data to this ip address :

    http://localhost:8090/feed.ffm

    But I got this error :

    enter image description here

    My configuration is pretty simple.

    enter image description here

    I do understand why this happened. The server side show no error at all. Can anyone explain ? I tried to find solutions to this, but nothing succeeded.