Recherche avancée

Médias (1)

Mot : - Tags -/net art

Autres articles (52)

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 is the first MediaSPIP stable release.
    Its official release date is June 21, 2013 and is announced here.
    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 (...)

Sur d’autres sites (6952)

  • ffmpeg - Dynamic letters and random position watermark to video ?

    2 avril 2016, par sekmo

    I am making an online course, and to avoid piracy distribution I thought to put watermarks on the videos (including personal user information) so it cannot upload to sharing websites. Now the hard part : I would move the watermark during the video, in 3/4 random positions, every 30 seconds.
    It is possibile with ffmpeg ?

  • ffmpeg - Dynamic letters and random position watermark to video ?

    7 août 2021, par sekmo

    I am making an online course, and to avoid piracy distribution I thought to put watermarks on the videos (including personal user information) so it cannot upload to sharing websites. Now the hard part : I would move the watermark during the video, in 3/4 random positions, every 30 seconds.
It is possibile with ffmpeg ?

    


  • The output video has lag at the concat position after spliting and concatenating multiple videos using ffmpeg [closed]

    8 août 2022, par Mohammad Amin

    I wanted to split a 24 minutes video into three videos and concatenating that three videos to make a new video with original codecs but the output video has lag at the starting position of the merged video and can be seen in the video, by the way i tried a lots of methods but they didn't work

    


    first i tried to split my video into three videos :

    


    ffmpeg -i the_19.mkv -ss 00:00:00.000 -to 00:09:40.455 -map 0  -acodec copy -vcodec copy first.mkv
ffmpeg -i the_19.mkv -ss 00:12:32.460 -to 00:16:41.667 -map 0  -acodec copy -vcodec copy second.mkv
ffmpeg -i the_19.mkv -ss 00:19:08.272 -to 00:24:02.775 map 0 -acodec copy -vcodec copy third.mkv



    


    I created a list.txt file to merge them

    


    file 'first.mkv' 
file 'second.mkv' 
file 'third.mkv'


    


    for concatenating i used the following ffmpeg command :

    


    ffmpeg -safe 0 -f concat -i list.txt -map 0 -c copy the_full_19.mkv


    


    I also tried to split video into segments based on key frames and also it didn't help,
i want output to be smooth after merging this videos how can i do that ?