Recherche avancée

Médias (1)

Mot : - Tags -/artwork

Autres articles (16)

  • 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

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • Changer son thème graphique

    22 février 2011, par

    Le thème graphique ne touche pas à la disposition à proprement dite des éléments dans la page. Il ne fait que modifier l’apparence des éléments.
    Le placement peut être modifié effectivement, mais cette modification n’est que visuelle et non pas au niveau de la représentation sémantique de la page.
    Modifier le thème graphique utilisé
    Pour modifier le thème graphique utilisé, il est nécessaire que le plugin zen-garden soit activé sur le site.
    Il suffit ensuite de se rendre dans l’espace de configuration du (...)

Sur d’autres sites (3301)

  • Adding current time as timestamp in h264 raw stream with few frames

    1er avril 2020, par Michaël

    I have a program that spits out an h264 raw stream (namely, screenrecord on Android). I'm using ffmpeg to add a PTS (Presentation Time Stamp) on the frames as follows :

    



    $ my-program | ffmpeg -i - -filter:v setpts='(RTCTIME - RTCSTART) / (TB * 1000000)' out.mp4


    



    This filter computes the current time, and puts it as the PTS.

    



    The trouble is that my-program does not produce any output if there is no change in the video. Since ffmpeg seems to wait for a bunch of frames before putting them through the setpts filter, the computed PTS won't be correct. In particular, the last frame of a sequence will be timestamped when the next sequence starts.

    



    Question : Is there a way (with ffmpeg or otherwise) to add current time as PTS to h264 raw frames, where "current time" is when receiving the frame, rather than outputting it ?

    



    Note : The problem is not from buffering from the pipe.

    


  • QVideoWidget throws GStreamer errror

    12 octobre 2015, par Nithyesh

    I’m creating a simple video player using Qt for Imx6 using QVideoWidget to display the video output on the UI. The program works fine on desktop but when I try to run the program on the board, I get the following error messsage :

    GStreamer-CRITICAL **: gst_object_ref_sink: assertion `GST_IS_OBJECT (object)' failed

    I have tried installing gst-plugins-good, gst-plugins-ugly and gst-plugins-bad and gst-ffmpeg but still I get the same error message. Any help on the issue is greatly appreciated.

  • OpenCV (C++) Load images sequentially with name containing X

    4 avril 2016, par Alec Gamble

    I was wanting to create a program which would take every image within a certain directory (preferably with a specific image prefix) and store them in an array of Mats.

    subquestion :
    I’m creating the images using ffmpeg previously in the same program.

    system(
          "ffmpeg "
          "-i ..." // input file
          "-r 10 " // rate in Hz
          "..." // output location
          );

    What is the best practice for the location to output the images to considering that they’re to be temporary ? I’m building in XCode and am currently making an OSX application but I would ideally like to be able to port it to iOS. should I use /tmp ?