Recherche avancée

Médias (1)

Mot : - Tags -/embed

Autres articles (104)

  • 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.

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

Sur d’autres sites (10526)

  • FFMPEG : Using av_write_frame AFTER av_write_trailer

    20 mars 2024, par Aleksei Komarov

    I'm using avio_alloc_context with my own "write_buffer_proc" to override file i/o.
I am trying to continue writing the stream with av_write_frame AFTER av_write_trailer was called.
But av_write_trailer has some strange side effects.

    


    The result is AV in module 'avformat-58.dll' (Read of address 0000000000000090)
I think that FormatContext becomes invalid after av_write_trailer.
How Can I fix it ?
Can I try to save FormatContext somewhere before calling av_write_trailer ?

    


  • Error : "from : can't read /var/mail/moviepy.editor" How to resolve ?

    23 mai 2017, par batman_rising

    I have a script using which I am editing a video, (extracting 10 clips from a video and then simply concatenating them), I am using moviepy python module as well as ffmpeg

    The script works perfectly when I run it from terminal,

    Now I wanted to run the same script on startup, so I added a path in /etc/rc.local
    sudo python /home/startlord/myProject/run.py but the code doesn’t work.

    also, I tried another approach,
    sudo nano /etc/init.d/testRun and created the script executable sudo chmod 755 /etc/init.d/testRun
    but when I wanted to start the execution sudo /etc/init.d/testRun start I was getting this error

    from : can’t read /var/mail/moviepy.editor

    what should I do now ! I am using UP-board, please help, I am not from computer science background.

  • How do I allow MPEG tcp 'pull' from FFMPEG

    7 mars 2021, par Ian

    I am using FFMPEG to create a TCP MPEG-2 stream using the following inside of nginx :

    


    exec ffmpeg -i rtmp ://localhost:1935/live/$name -codec copy -g 1 -bsf:v h264_mp4toannexb -f mpegts tcp ://192.168.1.225:1235 ;

    


    I'd like to allow a client to pull a stream from this server rather than pushing to a specific address. Can I do this ?