Recherche avancée

Médias (33)

Mot : - Tags -/creative commons

Autres articles (99)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • 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 (...)

Sur d’autres sites (7433)

  • 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.