
Recherche avancée
Médias (17)
-
Matmos - Action at a Distance
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
DJ Dolores - Oslodum 2004 (includes (cc) sample of “Oslodum” by Gilberto Gil)
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Danger Mouse & Jemini - What U Sittin’ On ? (starring Cee Lo and Tha Alkaholiks)
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Cornelius - Wataridori 2
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Rapture - Sister Saviour (Blackstrobe Remix)
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Chuck D with Fine Arts Militia - No Meaning No
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (53)
-
Gestion générale des documents
13 mai 2011, parMédiaSPIP ne modifie jamais le document original mis en ligne.
Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...) -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.
Sur d’autres sites (8547)
-
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 keep ffmpeg alive ? it keep exiting
8 février 2019, par Mikko-Pentti Einari EronenI have the following setup :
1. I have Raspberry PI with camera module streaming video to IP using RPI Cam Control.
2. On my main PC I can view that feed and it works great. No problem there.
3. I am attempting to resend that feed in to /dev/video0 with ffmpeg, which sort of works. But it only works once.The problem is ffmpeg just exits after sending one frame to /dev/video0 without any errors. I am previewing it with ffplay /dev/video0. It updates only when I run my ffmpeg command again and then ffmpeg just exits again.
I probably have some stupid mistake with ffmpeg command which I can’t pinpoint :
ffmpeg -i http/192.168.1.201/html/cam_pic.php -pix_fmt yuv420p -f v4l2 /dev/video0
-
Is there a way to Extract frames from .ts files with Http Live Stream in iOS
12 mai 2016, par user1529412I have a current setup in iOS app that streams directly from RTSP and I use ffmpeg library in objective C to extract frames and convert them to RGB/YUV and display them consecutive RGB pics (Video like).
I have a new requirement for HTTP Live Stream (HLS) which requires .ts files and m3u8 index file. I can play the ts files with AVPlayer, but its not what I am looking for, I want to apply my custom OpenGL View like the baove RTSP, so I need access to the actual frames of the ts, because I need the finer control over the frames to apply some OpenGL manipulation. Does anyone know how I can get at the frames of the .ts in Objective-C ?