Recherche avancée

Médias (1)

Mot : - Tags -/belgique

Autres articles (84)

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

  • Gestion de la ferme

    2 mars 2010, par

    La ferme est gérée dans son ensemble par des "super admins".
    Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
    Dans un premier temps il utilise le plugin "Gestion de mutualisation"

Sur d’autres sites (3906)

  • While concating video with ffmpeg-concat middle video if freezed

    9 juillet 2021, par mayank1513

    I am using ffmpeg-concat to concat 3 videos. The middle video however has dimension 718x1280. ffmpeg-concat works great except it freezes the middle video. So, I only see the first frame stuck...

    


    How to fix this ?

    


  • how to combine several video random any one to create 1 new video ? using ffmpeg ?

    22 décembre 2016, par Sky Moon

    how to combine several video random any one to create 1 new video ?
    for example, I have 10 videos : 01.mp4 ; 02.mp4 ... 10.mp4
    I want to combine random 5 of them to create 1 video
    example :
    (01.mp4+ 03.mp4+ 04.mp4+ 06.mp4 + 08.mp4) = 1 new video

    (02.mp4+ 04.mp4+ 05.mp4+ 06.mp4 + 09.mp4) = 1 new video

    Similar : random combination of 50 videos of 1000 videos to create 1 new video ?

  • Ffmpeg video freeze for longer video

    10 mars 2016, par Vishnu

    I have a video of 30 seconds , I am making it 1 hour video using below code

    echo shell_exec('/usr/local/bin/ffmpeg -y -i universal.mp4  -f lavfi -i "color=black:s=1280x720:r=24:d=3600" -filter_complex "[0][1]concat=n=2:v=1:a=0[v]" -map [v] -c:v libx264 -map 0:1 -c:a libfdk_aac -b:a 256k output.mp4  2>&1');

    So The output.mp4 created using above code is 1 hour long and it is getting freezed by vlc ,windows mediaplayer when I seek to certain minutes.But when I set duration d=300 , output video is perfect. Why does long video gets freezed from above output.