
Recherche avancée
Médias (3)
-
The Slip - Artworks
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
-
Podcasting Legal guide
16 mai 2011, par
Mis à jour : Mai 2011
Langue : English
Type : Texte
-
Creativecommons informational flyer
16 mai 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (109)
-
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 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 septembre 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 juin 2013, parExplications 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 (...)
Sur d’autres sites (9675)
-
Loop input on a http url with ffmpeg ?
19 mai 2020, par halo testHow can I loop input on a http url with ffmpeg ?
The http url jpg is dynamically changing so every time I call the http url its a new image.



I have already tried these commands below.



ffmpeg -stream_loop -1 -i http://127.0.0.1/api/gfx/frame.jpg -codec mpeg4 -f rtsp rtsp://localhost:8554/stream



ffmpeg -r 1 -filter_complex loop=loop=-1:size=100:start=0 -i http://127.0.0.1/api/gfx/frame.jpg -f rtsp rtsp://localhost:8554/stream



This comment makes it seems like there is no support or work around.



-loop_input is deprecated in favor of -loop, which unfortunately doesn't re-read HTTP URL's. (Even if the returned image has Cache-Control:none). Even trying -pattern_type sequence and adding ?dummy=%d to the URL fails, as the sequence numbering is incompatilbe with URL's as well. – MSalters Jul 18"
Generate a movie with ffmpeg from a changing still image url ?


-
HTTP Live Streaming Mac app
4 mars 2013, par Diederik HoogenboomI am developing a Mac app which needs to provide a HTTP Live Stream (just the last 2 seconds or so) for the main screen (Desktop).
I was thinking of the following process :
- Create a AVCaptureSession with a AVCaptureScreenInput as input (sessionPreset = AVCaptureSessionPresetPhoto)
- Add a AVCaptureVideoDataOutput output to the session
- Capture the frames (in kCVPixelFormatType_32BGRA format) in captureOutput:didDropSampleBuffer:fromConnection : and write these to a ffmpeg process for segmenting (using a pipe or something) that creates the MPEG-TS and playlist files.
- Use an embedded HTTP server to server up the segmented files and playlist file.
Is this the best approach and is there is no way to circumvent the ffmpeg part for encoding and segmenting the video stream ?
What is the best way to pipe the raw frames to ffmpeg ?
-
avformat/http: simplify chained_options copying
15 novembre 2014, par Michael Niedermayer