Recherche avancée

Médias (0)

Mot : - Tags -/interaction

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

Autres articles (71)

  • La sauvegarde automatique de canaux SPIP

    1er avril 2010, par

    Dans le cadre de la mise en place d’une plateforme ouverte, il est important pour les hébergeurs de pouvoir disposer de sauvegardes assez régulières pour parer à tout problème éventuel.
    Pour réaliser cette tâche on se base sur deux plugins SPIP : Saveauto qui permet une sauvegarde régulière de la base de donnée sous la forme d’un dump mysql (utilisable dans phpmyadmin) mes_fichiers_2 qui permet de réaliser une archive au format zip des données importantes du site (les documents, les éléments (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (9126)

  • Incorrect height for U and V channel when creating video from jpgs using ffmpeg

    27 juillet 2022, par Chu Bun

    I use the method in the ffmpeg source sample decode_video.c to decode a series of jpgs into AVFrames. Then use the method in the sample encode_video.c to combine the AVFrames into a video file.

    


    AV_CODEC_ID_MJPEG is used to set up the decoder for the jpgs. The output frames have the format AV_PIX_FMT_YUVJ422P which has (full-width x full-height) Y-channel, and (half-width x full-height) U and V channels. The problem is when I try to encode the frames, ffmpeg seems to expect (half-width x half-height) U and V channels. As a result the colors are stretch in the vertical direction and do not match with the image in the Y-channel.

    


    I could not figure out how to either decode the jpgs into YUV420 (half-width x half-height) frames, or encode frames in YUV422 format. Any pointers ?

    


  • DirectShow stream using ffmpeg point to point streaming through TCP protocol

    12 juillet 2017, par Jānis Biedriņš

    I had set up a point-to-point stream using ffmpeg via UDP protocol and the stream worked, but there was screen tearing etc. I already tried raising the buffer size, but it did not help. This is a work network, so the UDP protocol won’t work.
    here is the full command :

    ffmpeg -f dshow  -i video="UScreenCapture"  -r 30 -vcodec mpeg4 -q 12 -f mpegts udp://192.168.1.220:1234?pkt_size=188?buffer_size=65535

    I’ve tried to make this work with TCP with no success
    Here’s what i’ve got now :

    ffmpeg -f dshow -i video="UScreenCapture" -f mpegts tcp://192.168.1.194:5555

    this returns an error :

    real-time buffer [UScreenCapture] [Video input] too full or near too
    full <323% of size : 3041280 [rtbufsize parameter]> ! frame dropped !

    This last message repeated xxxx times (it went up to around 1400 and I just turned it off).

    I’ve tried to implement the -rtbufsize paremeter and raising the buffsize up to 800000000, didn’t help.

    I would appreciate any suggestions on how to solve this.

  • FFMPEG command to mix audio and video with adjustable volume, plays till Video length and loop audio entire video

    10 mai 2020, par Tomin

    I have :

    &#xA;&#xA;

      &#xA;
    • Video file of X length
    • &#xA;

    • Audio of Y length
    • &#xA;

    &#xA;&#xA;

    I am trying to achieve an output video that has the following qualities :

    &#xA;&#xA;

      &#xA;
    1. The volume level of the added audio should be adjustable
    2. &#xA;

    3. The audio should loop till the end of the video
    4. &#xA;

    5. It should not break even if the input video does not have any audio
    6. &#xA;

    7. I should be able to mute the audio of the source video if needed.
    8. &#xA;

    9. All of the above, in the fastest possible way.
    10. &#xA;

    &#xA;&#xA;

    I'm not well versed with FFMPEG, maybe some experts could help.

    &#xA;