Recherche avancée

Médias (1)

Mot : - Tags -/epub

Autres articles (46)

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

  • Dépôt de média et thèmes par FTP

    31 mai 2013, par

    L’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
    Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

Sur d’autres sites (2061)

  • FFMPEG : av_interleaved_write_frame() : Connection reset by peer

    9 mars 2017, par mrcatmann

    I try to broadcast a video from one of my servers to a RTMP server based on NGINX-RTMP. But sometimes there are reconnects because of bad network on RTMP server, and then ffmpeg gives me errors like

    av_interleaved_write_frame(): Connection reset by peer
    [flv @ 0x30351a0] Failed to update header with correct duration.
    [flv @ 0x30351a0] Failed to update header with correct filesize.
    Error writing trailer of (address): Connection reset by peer"

    Tried to use "reconnect" command, but it didn’t help me. The full FFMPEG command is :

    ffmpeg -reconnect 1 -reconnect_at_eof 1 -reconnect_streamed 1 -reconnect_delay_max 4274 -re -i "(file)" -s 640x360 -aspect 16:9  -c copy -f flv "(stream address)"

    Is there a way to bypass this ? I can’t play the same video from the beginning in this situation, it needs to be continued from the same point.

  • Merge commit ’22e18ea39e371030cc78973d1b46aae45a7ea215’

    3 juillet 2013, par Michael Niedermayer
    Merge commit ’22e18ea39e371030cc78973d1b46aae45a7ea215’
    

    * commit ’22e18ea39e371030cc78973d1b46aae45a7ea215’ :
    jpeg2000 : Optimize output sample conversion
    jpeg2000 : Reset s->numX/Ytiles on tile deallocation
    jpeg2000 : Optimize dequantization
    jpeg2000 : Do not assume a single tile
    jpeg2000 : Speed up jpeg2000_decode_tile()
    jpeg2000 : Use EBCOT’s CAUSAL and BYPASS mode in decode_cblk()

    Conflicts :
    libavcodec/jpeg2000dec.c

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

    • [DH] libavcodec/jpeg2000dec.c
  • Write raw PCMA data to an audio file using ffmpeg

    4 août 2020, par WithoutExperience

    I received a task where I have to process RTP packets containing audio data. In the previous question, I figured out how to process an RTP packet, and output the payload for further processing. In my case, the type of payload is PCMA (Payload type - 8). The problem occurs when writing the payload itself. I know that when allocating a payload, it also needs to be processed, since this load contains the audio data format and the audio data itself. The question is how do I create an audio file using the ffmpeg library and write audio packages created using the ffmpeg library itself to it. I should use the library functions, not the finished library itself.

    &#xA;

    I looked at the encoder example, but I don't know how to bypass the raw PCMA data itself, how to create a frame and write it to a file.

    &#xA;