
Recherche avancée
Médias (91)
-
GetID3 - Boutons supplémentaires
9 avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
-
Core Media Video
4 avril 2013, par
Mis à jour : Juin 2013
Langue : français
Type : Video
-
The pirate bay depuis la Belgique
1er avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
-
Exemple de boutons d’action pour une collection collaborative
27 février 2013, par
Mis à jour : Mars 2013
Langue : français
Type : Image
-
Exemple de boutons d’action pour une collection personnelle
27 février 2013, par
Mis à jour : Février 2013
Langue : English
Type : Image
Autres articles (106)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Creating farms of unique websites
13 avril 2011, parMediaSPIP 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, parLa 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 (10507)
-
Decode h264 example ios 7 frame by frame
18 février 2016, par Андрей ЯрядомGood day.
I have a ip camera. From it frame by frame comes stream h264.
On the Internet, in particular on stackoverflow, a lot of information about how to decode h264 on iOS.
But this information is not clear.
I ask you to show me an example and show right direction of how to decode a frame by frame h264 stream to iOS 7.What options I have seen and what I know about them :
-
ffmpeg - not suitable for me, as it has LGPL license.
-
AVAnimator library - license inappropriate for me.
-
Hardware decoder - the best solution, but as I understand it, is only
available for iOS 8.
For me to be the perfect option if you give me an example for correct decoding h264 stream and display it on the way to the screen.
Regards.
-
-
Using ffmpeg to resync an encoded video [closed]
27 avril 2024, par Marc MoutonI am encoding a few videos with av1an and svt-av1-psy.
I have one file with audio that goes out of sync. I usually encode the audio in opus, but even remuxing the original stream result in out of sync.
It seems the new av1 video is shorter of 831ms compare to original. Using mkvtoolnix to set -831ms and use the "correct video timing..." option result in a file that is not far of being well sync, but no quiet perfect and the total lenght of the video is even shorter.


So is there any way to use the original h264 video file as a reference for the new AV1 ?


-
Ffmpeg video freeze for longer video
10 mars 2016, par VishnuI 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.