Advanced search

Medias (1)

Tag: - Tags -/ogg

Other articles (65)

  • Des sites réalisés avec MediaSPIP

    2 May 2011, by

    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.

  • Taille des images et des logos définissables

    9 February 2011, by

    Dans beaucoup d’endroits du site, logos et images sont redimensionnées pour correspondre aux emplacements définis par les thèmes. L’ensemble des ces tailles pouvant changer d’un thème à un autre peuvent être définies directement dans le thème et éviter ainsi à l’utilisateur de devoir les configurer manuellement après avoir changé l’apparence de son site.
    Ces tailles d’images sont également disponibles dans la configuration spécifique de MediaSPIP Core. La taille maximale du logo du site en pixels, on permet (...)

  • Librairies et logiciels spécifiques aux médias

    10 December 2010, by

    Pour un fonctionnement correct et optimal, plusieurs choses sont à prendre en considération.
    Il est important, après avoir installé apache2, mysql et php5, d’installer d’autres logiciels nécessaires dont les installations sont décrites dans les liens afférants. Un ensemble de librairies multimedias (x264, libtheora, libvpx) utilisées pour l’encodage et le décodage des vidéos et sons afin de supporter le plus grand nombre de fichiers possibles. Cf. : ce tutoriel; FFMpeg avec le maximum de décodeurs et (...)

On other websites (3914)

  • FFmpeg - Record video feed from camera and store each frame timestamp

    21 March 2023, by Buzz

    I've searched far and wide here on SO and I've found lots of similar question, but most of them regarding either single snapshot recording, offline video processing or drawing timstamp on a frame.

    


    I'm quite new to ffmpeg, so sorry if the question is very trivial.

    


    I'd need to record a video feed from a camera and to store (into the same video file, if any, or in a separate textual file) each frame timestamp (absolute, not relative)

    


    I've noticed that many have used -frame_pts, but, though pertinent, I'm not sure how to integrate it for the issue above.

    


  • Ffmpeg to add watermark and username to videos like tiktok

    8 April 2024, by hazem khairy

    I am trying to use ffmpeg to add watermark and username (dynamic input) to videos same as tiktok.

    


    Currently I have the following command which adds an image to video but the transition is moving from left to right, my goal to make it appear in random positions as tiktok, and also to add username under the logo but not sure how to make it happen.

    


    ffmpeg -i testvideo.mp4 -i logo.png -filter_complex "[1][0]scale2ref=w=iw/10:h=ow/mdar[logo][main];[main][logo]overlay=x='mod(t\,10)/10*W':y='if(lt(mod(t+2\,8)\,4)\,H-h-H*20/100\,H*20/100)'" -vcodec libx264 -crf 28 -preset faster -tune film  output_video_test.mp4


    


    I tried to use rand() function but received the following error

    


    Unknown function in 'rand(...)'


    


    How can I make log appear in random places and add dynamic user input (username) same as tiktok using ffmpeg?
And if not possible can I achieve the end goal with other technology?

    


  • ffmpeg and php - generating thumbnail

    25 February 2014, by stinkysGTI

    I've never used ffmpeg before, but it seemed rather straight forward. I already have a script that handles the uploaded file and stores all of the relative data into the database, but I'm not able to generate a thumbnail. I don't get an error either, I even checked the error_log on the server and there was nothing. The command I'm trying to use is:

    shell_exec("/usr/bin/ffmpeg -i files/clipcanvas_14348_offline.mp4 -r 1 -s 1024x576 -f image2 -vframes 1 files/thumb_test.jpg");

    I will change the static file names with variables once I get it working because the videos that will be thumbnailed are uploaded through a form.

    I tried using the solution from this page:

    ffmpeg Getting image or thumbnail from video error

    But I'm not having any luck. Could it somehow be possible it's because it's on a sub domain?