
Advanced search
Medias (91)
-
Valkaama DVD Cover Outside
4 October 2011, by
Updated: October 2011
Language: English
Type: Picture
-
Valkaama DVD Label
4 October 2011, by
Updated: February 2013
Language: English
Type: Picture
-
Valkaama DVD Cover Inside
4 October 2011, by
Updated: October 2011
Language: English
Type: Picture
-
1,000,000
27 September 2011, by
Updated: September 2011
Language: English
Type: Audio
-
Demon Seed
26 September 2011, by
Updated: September 2011
Language: English
Type: Audio
-
The Four of Us are Dying
26 September 2011, by
Updated: September 2011
Language: English
Type: Audio
Other articles (76)
-
MediaSPIP version 0.1 Beta
16 April 2011, byMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, 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 (...) -
Amélioration de la version de base
13 September 2013Jolie sélection multiple
Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...) -
Mise à jour de la version 0.1 vers 0.2
24 June 2013, byExplications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1); Installation des dépendances pour Smush; Installation de MediaInfo et FFprobe pour la récupération des métadonnées; On n’utilise plus ffmpeg2theora; On n’installe plus flvtool2 au profit de flvtool++; On n’installe plus ffmpeg-php qui n’est plus maintenu au profit de (...)
On other websites (8120)
-
iPAD Streaming video to a ffmpeg server. front facing camera
6 December 2011, by IrishGringoThis is a video chat type program.
My project is to write a native ObjC app that will stream video from the front facing camera to a server. This server will format and relay to be sent to another location.
In a related question, I want to display video streaming from the server. The video server will probably be running ffmpeg for formating.
But this question is just asking advice for the iPAD project. I wanted to get comments about issues I need to be thinking about.This is my strategy:
I was thinking of using AVFoundation framework to stream from the cam to a URL server. I don't know if I will be formatting on the client or no, so some comment there would be interesting. http://developer.apple.com/library/mac/#documentation/AVFoundation/Reference/AVFoundationFramework/_index.htmlFor streaming the video, I was going to be using:
http://developer.apple.com/library/IOs/#documentation/AVFoundation/Reference/AVCaptureSession_Class/Reference/Reference.html#//apple_ref/occ/cl/AVCaptureSessionso if someone has some ideas/suggestions... extra code I can look at. I would appreciate it.
-
Video Surveliance application by connecting DVR
14 May 2014, by iMOBDEVI am trying to connect to the DVR so that I can view video recording on my IOS device, I tried to search a lot but could not find a single useful link to move ahead with connecting to the DVR. I found that, it can be done using FFMPEG, but could not be able to do what to do and how to do.
What I need to do is: connect to the IP address and port where the DVR is configured, give username and password for that DVR to connect to the DVR. Something like following link:
https://itunes.apple.com/en/app/vmeye/id365532547?mt=8
Guide me with useful links to move ahead with connecting to the DVR.
-
FFmpeg RTSP Recording: Video Timestamp Does not Match With Recorded MP4 File Timestamp [closed]
26 April 2024, by lastpeony4I'm currently testing by streaming a 30 fps example flv video using a local Happy-Time RTSP server.


This is the flv file i am streaming with RTSP:




I recorded the video with below ffmpeg command:


ffmpeg -i rtsp://127.0.0.1:6555/test30fps.flv -c copy test30fps.mp4



The resulting video appears visually satisfactory, yet there's a discrepancy between the displayed time on the video and the actual duration of the video file. Although the MP4 file duration is correct (endRecordingTimeMs-startRecordingTimeMs= mp4 file duration), the time displayed within the video does not synchronize precisely with the file's time. Notably, this disparity escalates as the video progresses.


I anticipate the time text overlaid on the video and the file's time to align seamlessly. However, a few seconds of divergence are noticeable, gradually expanding over the video's duration.




Why does this occur and is there any way to fix this?