Recherche avancée

Médias (1)

Mot : - Tags -/blender

Autres articles (69)

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

  • XMP PHP

    13 mai 2011, par

    Dixit Wikipedia, XMP signifie :
    Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
    Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
    XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...)

Sur d’autres sites (3273)

  • Where can I find a C/C++ FFmpeg extensive tutorial ?

    22 février 2021, par ticofab

    I want to use ffmpeg (in its c library form) to split a video in more parts, recompose them and encode the final result. Something basic. But it's very difficult to find documentation or hints about this. Where should I look/ask for advice ?

    


  • 1 movie to 14 part video / 1 Subtitle [closed]

    10 avril 2020, par Tayfun Erbilen

    I just cut my one long movie to 14 piece with ffmpeg.

    



    And now, I don't know how to show subtitle.

    



    Subtitle was for full version, but now I have 14 pieces and I don't know how to fit subtitle to these parts. By the way, I want to show on web. I'm using jwplayer for videos, but still I didn't figure out subtitle issue.

    



    Is anyone suggestion ?

    


  • created .webm from .mp4 with ffmpeg is async due to start_time>0 in video stream

    25 février 2015, par chuckice

    since a couple of days i’m trying to figure out a solution for syncronization issue, using ffmpeg as a transcoding application.

    i create a 1-fps .webm-preview of my .mp4-Video with the following ffmpeg command line :

    ffmpeg -i input.mp4 -vcodec libvpx -b:v 500k -ss 0 -qmin 10 -qmax 42 -maxrate 500k -bufsize 1000k -vf scale=768:576 -an -r 1 -g 0 -y output.webm

    after my .webm-format is transcoded, i realize that f.e. position 00:00:10.000 in both videos does not have the same image.

    after reading parts of the ffmpeg documentation, i found the parameter -vsync

    -vsync parameter

    0, passthrough : Each frame is passed with its timestamp from the demuxer to the muxer.

    1, cfr : Frames will be duplicated and dropped to achieve exactly the requested constant frame rate.

    2, vfr : Frames are passed through with their timestamp or dropped so as to prevent 2 frames from having the same timestamp.

    drop : As passthrough but destroys all timestamps, making the muxer generate fresh timestamps based on frame-rate.

    -1, auto : Chooses between 1 and 2 depending on muxer capabilities. This is the default method.

    As i’m kind of new to ffmpeg, i’d like to ask for help to spare my troubles.

    Anybody ?

    Update : Digging deeper i found out that my mp4-Source had an offset in the beginning.

    So i should solve this problem first.

    Documenting my work, i found out, that the video-Stream in my .mp4-Format has the following offset, defined as start_time.

    ffprobe -v quiet -show_streams -print_format json -i archiv.mp4
    {
       "streams": [
           {
               "index": 0,
               "codec_name": "h264",
               "codec_long_name": "H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10",
               "profile": "High",
               "codec_type": "video",
               "codec_time_base": "1/100",
               "codec_tag_string": "avc1",
               [..]
               "start_time": "1.080000",
               [..]
       ]

    Is there a way, resetting this start_time of the stream by ffmpeg ? Right now, im using the following command-line :

    ffmpeg -i input.ts -vf yadif -c:v libx264 -crf 24 -c:a libmp3lame -y -strict -2 -b:v 4000k -copyts -start_at_zero archiv.mp4