Recherche avancée

Médias (0)

Mot : - Tags -/upload

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (111)

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

  • Adding watermark to video

    27 avril 2018, par equallyhero

    I am able to use the moviepy library to add a watermark to a section of video. However when I do this it is taking the watermarked segment, and creating a new file with it. I am trying to figure out if it is possible to simply splice in the edited part back into the original video, as moviepy is EXTREMELY slow writing to the disk, so the smaller the segment the better.

    I was thinking maybe using shutil ?

    video = mp.VideoFileClip("C:\\Users\\admin\\Desktop\\Test\\demovideo.mp4").subclip(10,20)

    logo = (mp.ImageClip("C:\\Users\\admin\\Desktop\\Watermark\\watermarkpic.png")
             .set_duration(20)
             .resize(height=20) # if you need to resize...
             .margin(right=8, bottom=8, opacity=0) # (optional) logo-border padding
             .set_pos(("right","bottom")))

    final = mp.CompositeVideoClip([video, logo])
    final.write_videofile("C:\\Users\\admin\\Desktop\\output\\demovideo(watermarked).mp4", audio = True, progress_bar = False)

    Is there a way to copy the 10 second watermarked snippet back into the original video file ? Or is there another library that allows me to do this ?

  • combine specific mpeg-dash segments (ex int.mp4 + seg_1.m4s +seg_3.m4s) into one single mp4 file

    16 avril 2019, par Liquid

    I am working one video transcoding in FFmpeg and MP4Box. Currently I am trying to combine/merge/concatenate specific MPEG-DASH video segments(m4s ex:int.mp4, seg_1.m4s, seg2,m4s,sge5.m4s) into one mp4 file.

    This the example of what I am trying to do.

    I have followed this thread ("Combine MPEG-DASH segments (ex, init.mp4 + segments.m4s) back to a full source.mp4 ?") but there is a problem while combining the specific m4s segments, while doing that it frames feazed in after seg2 and in seg5 it played again.

    Reference : FFmpeg example

  • Timing breaks concatenating two identical videos after one has ATEMP/SETPTS altered

    25 mai 2019, par user3144514

    Video (B)
    Copy pasted and then doubled speed with Setpts and Atempo as Video (A)

    Concatenating them results in a video with the (A) portion playing at the expected 2x speed, but the (B) portion playing back at 1/2 speed.

    I am simply trying to speed up sections of video that are repetative and merge them back in.

    I have tried doing another round of SETPTS/ATEMPO with 1.0 values, but it doesn’t alter the outcome.

    I have also tried forcibly re-encoding A and B to ensure they match in formats, still no change.

    Speed Change

    ffmpeg -i source.mp4 -filter_complex "[0:v]setpts=0.5*PTS[v];[0:a]atempo=2.0[a]" -map "[v]" -map "[a]" A.mp4

    Concatenation

    ffmpeg -i A.mp4 -c copy -bsf:v h264_mp4toannexb -f mpegts x1.ts
    ffmpeg -i B.mp4 -c copy -bsf:v h264_mp4toannexb -f mpegts x2.ts
    ffmpeg -i "concat:x1.ts|x2.ts" -c copy -bsf:a aac_adtstoasc C.mp4

    Do I need to use some other method to alter the playback rate without changing some internal timing value ?

    Or is there some way to fix the rates after adjusting SETPTS and ATEMPO so that the timing is restored ?