Recherche avancée

Médias (1)

Mot : - Tags -/publicité

Autres articles (75)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

Sur d’autres sites (4759)

  • Is seeking to specific frames of an MJPEG video faster than doing the same for an h.264 file ?

    9 février 2018, par David Parks

    I am recording video and will need to seek to a specific frame in the video quickly and randomly.

    I can record the video in MJPEG or h.264 compression standards.

    I understand that MJPEG produces individual jpegs and produce larger file sizes than h.264, and h.264 compresses across multiple frames of video.

    Does this difference mean that I will get faster seek times when
    seeking to a random location in the file using ffmpeg or gstreamer
    programmatically ?

    Will the MJPEG allow the frame-seek operation to reduce the IO requirements when reading just 1 frame from a video file ?

  • ffmpeg video length is 0 when concatenating pictures

    10 novembre 2019, par iftach freund

    I’m trying to concatenate individual frames, but the video length is 0 and all frames seemingly play at once. Iv’e tried increasing the video length in ffmpeg and changing the frame rate.

    os.system('ffmpeg -f concat -i List_tb.txt -c copy output.mp4')
    os.system("ffmpeg -i output.mp4 -filter:v fps=fps=120 output_temp.mp4")
    os.system("ffmpeg -i output_temp.mp4 -filter:v setpts=8.0*PTS final.mp4")

    also the frame rate is the amount of frames

  • MP4 - get current subtitle text

    20 février 2019, par murrdpirate

    I’m trying to find a way to grab the current subtitle in an MP4 file. I see that ffmpeg can extract all subtitles into an .srt file, but it would be useful for me to just grab the current subtitle based on the current timestamp of a video being played. Especially useful if it can be done with python. This would be akin to opencv and moviepy, where I can extract the current frame as an image based on the current timestamp of the video.

    I see a lot of libraries that work with subtitle .srt files (e.g. pysrt) but none that access individual subtitles from a playng mp4 file.