
Recherche avancée
Médias (2)
-
Core Media Video
4 avril 2013, par
Mis à jour : Juin 2013
Langue : français
Type : Video
-
Video d’abeille en portrait
14 mai 2011, par
Mis à jour : Février 2012
Langue : français
Type : Video
Autres articles (84)
-
List of compatible distributions
26 avril 2011, parThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...) -
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 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 (...) -
Submit bugs and patches
13 avril 2011Unfortunately a software is never perfect.
If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
You may also (...)
Sur d’autres sites (12237)
-
FFMpeg - Adding Timecode track messes with video output
19 octobre 2022, par MuindorI'm using FFMpeg to setup some automation.


I want to pull in a PNG, repeat it for 5 seconds, then add on an mov file to the end. I have that working great. The problem comes when I add a timecode to the output. The output video remains the correct length, but the PNG only repeats for 24 frames instead of 120, then the mov gets added, then black frames fill the rest.


This is the command I'm using. Without the timecode flag it works perfectly.


./ffmpeg -loop 1 -t 5 -r 24 -i 'image.png' -i 'end.mov' -filter_complex "[0]setdar=16/9[a];[1]setdar=16/9[b];[a][b]concat=n=2:v=1" -vsync 2 -r 24 -vcodec prores -timecode 00:59:53:00 output.mov



Just a note, I don't want any any audio track.


Thanks in advance !


-
How to inject track telemetry to a video as per camm-spec
24 septembre 2021, par code0x00I created a video using images and want to inject telemetry track data into it and as per https://developers.google.com/streetview/publish/camm-spec


Can anyone tell me, how is it possible ?


-
How can I set start time streaming without removing audio track ?
10 juin 2017, par user3622053I’m recording browser canvas and send videos chunks to backend e transcoded with
ffmpeg
to build a.m3u8
file, so I need to set up PTS using the command :ffmpeg -v quiet -loglevel error -i test5.webm -vcodec libx264 -acodec aac -r 25 -profile:v baseline -b:v 800k -b:a 48k -f mpegts -strict experimental -mpegts_copyts 1 -filter:v setpts=PTS+50.217/TB -y test5new.ts
But, filter setpts just work when I remove audio track of video using "-an" :
ffmpeg -v quiet -loglevel error -i test5.webm -vcodec libx264 -an -r 25 -profile:v baseline -b:v 800k -b:a 48k -f mpegts -strict experimental -mpegts_copyts 1 -filter:v setpts=PTS+50.217/TB -y test5new.ts
How can I set start time streaming without removing audio track ?