Recherche avancée

Médias (91)

Autres articles (102)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • 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 ;

Sur d’autres sites (9434)

  • ffmpeg, how to cut to exactly at the start and end time ? [closed]

    28 mars 2024, par Wayne Julian

    According to this article you can only cut the time, but not specify when to cut from the original video. So the end time will always be wrong. You need to calculate each time on the timeline when your video will end.

    


    e.g. -ss 01:30:40 -to 03:03:05 will cut your video in the wrong order, because it starting the calculation not from the 00:00:00 of the video, but from the -ss 01:30:40

    


    Is there a workaround for this ?

    


    example command :
ffmpeg -ss 00:14:15 -an -i  "2022-05-30.mp4" -to 01:30:40 -crf 23 -c:v libx264 PART1.mp4

    


    I will lose 14:15 minutes here, it is clearly a bug.
I need to extract 14:15 from the end time to get the correct time of the result video. When it comes to multiple video-editing it's so annoying.

    


  • FFMPEG timelapse with alternate time scale

    24 juin 2022, par Bill V

    My home video system takes a snapshot every 15 seconds. At midnight I run a script that uses ffmpeg to create a time lapse video at 8 frames/second. Playing the resulting time lapse video takes 12 minutes. When I play it back, the time line show the time as 0-12:00. I'd like it to show the time of the snapshots - 0-23:59:45. Can that be done and if so how ? Below is the ffmpeg command I use. Prior to running ffmpeg, the images are in files ordered 1.jpg to 5760.jpg. Thanks

    


    ffmpeg -r 8 -s 1920x1080 -i %%d.jpg -vcodec mpeg4 -crf 25 -pix_fmt yuv420p temp.mp4


    


  • FFmpeg get a crop without tying it to a specific time period

    30 avril 2021, par Дмитрий Варзанов
    crop = sub.check_output("ffmpeg -i "+file+" -ss 5 -t 30  -vf cropdetect -f null - 2>&1 | awk '/crop/ { print  $NF }' | tail -1", shell=True).decode().strip()


    


    In order not to bind to a time interval, it is possible to analyze the frames for the entire time period of the video file.

    


    It would be a solution if this process was performed quickly, instantly. But unfortunately, it can take hours, depending on the duration of the video

    


    Execute the command to get the duration of the video, and then calculate and set the time to get the crop. We'll have to build forests...

    


    I am looking for a solution in which there will be no need to set the time and at the same time the task will take the least amount of time.

    


    Perhaps someone has a solution ?