Recherche avancée

Médias (91)

Autres articles (36)

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • Selection of projects using MediaSPIP

    2 mai 2011, par

    The examples below are representative elements of MediaSPIP specific uses for specific projects.
    MediaSPIP farm @ Infini
    The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)

Sur d’autres sites (6877)

  • Merge commit ’3e1b5cbc9ab0a61c9bec08a1df1404b9da6ed7ea’

    16 mars 2015, par Michael Niedermayer
    Merge commit ’3e1b5cbc9ab0a61c9bec08a1df1404b9da6ed7ea’
    

    * commit ’3e1b5cbc9ab0a61c9bec08a1df1404b9da6ed7ea’ :
    configure : handle Apple’s armv7s in probe_arm_arch()

    Merged-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] configure
  • How would I go about playing a video stream with ffpyplayer ?

    15 juillet 2024, par sharp312

    First time poster here, so go easy on me.

    &#xA;&#xA;

    I'm working on a fun little project for myself and friends, basically I want to be able to stream and recieve video using ffmpeg, as a sort of screen sharing application. I'm a complete python noob and im just going off of the documentation for each.&#xA;Heres what I have for sending :

    &#xA;&#xA;

    import ffmpeg&#xA;stream = ffmpeg.input("video.mp4")&#xA;stream = ffmpeg.output(stream, "tcp://127.0.0.1:1234", format="mpegts")&#xA;ffmpeg.run(stream)&#xA;

    &#xA;&#xA;

    It's simple but it works, when I run ffplay.exe -i tcp://127.0.0.1:1234?listen -hide_banner in a command prompt and run the code to send the video, it works perfectly, but when I try and use my code to recieve a video, all I get is audio, no video, and after the video has finished the last second of the audio is repeated.&#xA;Heres the recieving code :

    &#xA;&#xA;

    from ffpyplayer.player import MediaPlayer&#xA;test = MediaPlayer("tcp://127.0.0.1:1234?listen")&#xA;while True:&#xA;    test.get_frame()&#xA;    if test == "eof":&#xA;        break&#xA;

    &#xA;&#xA;

    Thanks for any help and sorry if im just being oblivious to something :P

    &#xA;

  • what is the exact path to specify in php for ffmpeg for windows

    17 janvier 2014, par user3196597

    i'm new to ffmpeg..and i've been trying to figure out the exact path to specify while running it in a php exec() function the code below runs fine in terminal but not in php :

      1)c:/ffmpeg/bin/ffmpeg -y -i c:/xampp/htdocs/video/media/original.mp4 -f avi c:/xampp/htdocs/video/media/new.avi 2&lt;&amp;1


      2)c:/xampp/htdocs/video/ffmpeg/bin/ffmpeg.exe -y -i c:/xampp/htdocs/video/media/original.mp4 -f avi c:/xampp/htdocs/video/media/new.avi 2&lt;&amp;1

    that works fine in terminal but not in php, i think the problem is with the path specification..can anyone tell the exact path to use while working in windows,please ??

    thanks in advance friends :D