Recherche avancée

Médias (0)

Mot : - Tags -/content

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

Autres articles (82)

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

  • 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

Sur d’autres sites (10448)

  • Can't scrub frame by frame through .mp4 files in VLC created using FFmpeg command line, but changing container to .avi can scrub frame by frame in VLC

    16 juin 2022, par ICBanMI

    I wrote a really simple demonstration of the issue. I create a 4k video that is 150 frames, and output it to mp4. When I open that in VLC(Vent 3.0.17.4), I can scrub forward a few frames at the beginning(e key) before it stops entirely. If I move it towards the end of the file( 4 secs), it can't scrub forward at all.

    


    What I found out through testing. I can scrub forward/backward 3 seconds normal in vlc. I can scrub forward frame by frame using quicktime's latest version(2016). If I mux it to .avi file format, scrubbing using the e key works as expected in VLC. Copying the meta data from an mp4 that can scrub forward frame by frame doesn't change anything. Renaming the .mp4 file to .avi doesn't fix the issue... only muxing out to an avi does. Using a build of version 5.0.1 of ffmpeg.

    


    I included both VLC commands in code. I'd be more than happy to walk way from this with just muxing everything to avi... but .mp4 is a requirement along with being able to scrub forward frame by frame in VLC. Not sure if code or command line is where the issue is... as sample mp4s from the net used in VLC don't appear to have this issue.

    


    #include <iostream>&#xA;#include &#xA;&#xA;int main()&#xA;{&#xA;   FILE *m_pFFmpeg;&#xA;&#xA;   // Working - Can scrub forward frame by frame in latest version of vlc&#xA;   //const char *cmdOutput = "ffmpeg -hide_banner -y -r 30 -s 3840x2160 -f rawvideo -pix_fmt rgb24 -i - -framerate 30 -an -vcodec libx264 -pix_fmt yuv420p -video_track_timescale 30 -vf vflip -preset veryslow -qp 0 output.avi";&#xA;   &#xA;   // Not working - Can&#x27;t scrub forward frame by frame in latest version of vlc. Only difference is the .mp4 at the end&#xA;   const char *cmdOutput = "ffmpeg -hide_banner -y -r 30 -s 3840x2160 -f rawvideo -pix_fmt rgb24 -i - -framerate 30 -an -vcodec libx264 -pix_fmt yuv420p -video_track_timescale 30 -vf vflip -preset veryslow -qp 0 output.mp4";&#xA;  &#xA;   int g_x_dis_res = 3840;&#xA;   int g_y_dis_res = 2160;&#xA;&#xA;   m_pFFmpeg = _popen(cmdOutput, "wb");&#xA;&#xA;   uint8_t *export_buffer = new uint8_t[g_x_dis_res * g_y_dis_res * 3];&#xA;&#xA;   for (int i = 0; i &lt; (g_x_dis_res * g_y_dis_res * 3); i&#x2B;&#x2B;) {&#xA;      export_buffer[i] = 127;&#xA;   }&#xA;&#xA;   for (int j = 0; j &lt; 150; j&#x2B;&#x2B;) {&#xA;      fwrite(export_buffer, 3 * g_x_dis_res * g_y_dis_res, 1, m_pFFmpeg);&#xA;&#xA;      printf("Export Frame %d\n", j &#x2B; 1);&#xA;   }&#xA;&#xA;   delete[] export_buffer;&#xA;&#xA;   fflush(m_pFFmpeg);&#xA;   _pclose(m_pFFmpeg);&#xA;&#xA;   return 0;&#xA;}&#xA;</iostream>

    &#xA;

  • Revision 7255 : Utiliser les mêmes méthodes que jfu et mediaspip_player pour gérer les ...

    13 décembre 2012, par kent1 — Log

    Utiliser les mêmes méthodes que jfu et mediaspip_player pour gérer les items de langue
    On les place dans window.locale.emballe_medias_langue
    On n’a donc plus besoin de la fonction emballe_medias_json_encode ni du fichier prive/json/em_lang

  • Encoding QImage frames to video

    4 avril 2016, par keiivee

    Currently I can grab QImage frames from frames rendered using OpenGL. I am wanting to encode the QImage frames to video using ffmpeg and eventually stream this to a different machine in the network using live555 and display it on that machine with Qt window.

    I have found a wrapper qtffmpegwrapper, but this is no longer supported and has not been updated for 3 years that I can’t even get the example program to compile.