Recherche avancée

Médias (1)

Mot : - Tags -/Christian Nold

Autres articles (68)

  • Gestion générale des documents

    13 mai 2011, par

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...)

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

Sur d’autres sites (11937)

  • avfoundation : Fix compilation for OSes other than macOS and iOS

    25 mars, par Martin Storsjö
    avfoundation : Fix compilation for OSes other than macOS and iOS
    

    E.g. tvOS doesn't have devicesWithMediaType.

    In principle, we could probably disable building the whole
    input device on such OSes, but that would either require
    testing explicitly for the OS type in configure (which we don't
    do anywhere so far), or test for individual objective C methods.

    This approach allows the code to compile, but no input devices
    will be found at runtime.

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DH] libavdevice/avfoundation.m
  • How to concatenate multiple videos with ffmpeg while preserving each file's duration [closed]

    24 janvier 2024, par GaoJin

    I have several video clips. Let's say 10 clips.&#xA;I want to concatenate them all to one video.&#xA;The duration of video clips varies and when I get property with ffprobe it says.&#xA;11.37s, 10.7s, 6.67s, 12s, 9s ...&#xA;But after I concatenated them all, the duration of result video is a little longer than the sum of individual videos.

    &#xA;

    And what bothers me is the moment when one video transitions to the next.&#xA;Sometimes the transition moment comes about 1 sec than it must be at(The moment get by calculation)

    &#xA;

    I converted all video clips to constant 30 fps and h264.

    &#xA;

    ffmpeg -y -i "D:\\output\\temp_clip0.mp4" -i "D:\\output\\temp_clip1.mp4" -i "D:\\output\\temp_clip2.mp4" -i "D:\\output\\temp_clip3.mp4" -i "D:\\output\\temp_clip4.mp4" -i "D:\\output\\temp_clip5.mp4" -i "D:\\output\\temp_clip6.mp4" -i "D:\\output\\temp_clip7.mp4" -i "D:\\output\\temp_clip8.mp4" -i "D:\\output\\temp_clip9.mp4" -i "D:\\output\\temp_clip10.mp4" -i "D:\\output\\temp_clip11.mp4" -i "D:\\output\\temp_clip12.mp4" -i "D:\\output\\temp_clip13.mp4" -i "D:\\output\\temp_clip14.mp4" -i "D:\\output\\temp_clip15.mp4" -filter_complex [0:v][1:v][2:v][3:v][4:v][5:v][6:v][7:v][8:v][9:v][10:v][11:v][12:v][13:v][14:v][15:v]concat=n=16:v=1[outv] -map [outv] concated.mp4&#xA;

    &#xA;

  • FFMPEG corruption concat

    11 avril 2017, par Please Help

    When I run

    ffmpeg -f concat -i resizedvideolist.txt -c copy concatenated_time.mp4 2>&amp;1

    it concatenates all the videos in the txt, but there is one video around halfway through that get glitched out. The audio just doesn’t play for that video, but then starts playing on the next video, so it has been delayed. Then somewhere the audio managed to catch up and gets back in sync. Seems like some major corruption going on here.

    I do not know how to fix this as the codec is the same as all the other vidoes, H.264, it is an mp4 like the others. The individual video file runs fine as it is, and it already is in the same timescale, because before this ffmpeg command, I ran

    ffmpeg -i ./tempDownloadedMemes/$videoFileName -filter_complex 'scale=1080:-1,pad=1080:1080:(ow-iw)/2:(oh-ih)/2:0x2F2F2F' -video_track_timescale 15360 ./resizedVideos/resized_videoFileName 2>&amp;1

    To be honest I don’t even know what timescale is, but I read that it needs to be the same for it to work. I deleted the video from the list, tried this same command, and the problem was gone at the same time in the video that it would have appeared. It seems like it is something to do with that one file itself. Any known issues/workarounds on concat bugs ? This is very important to me. Thanks.