
Advanced search
Medias (91)
-
Géodiversité
9 September 2011, by ,
Updated: August 2018
Language: français
Type: Text
-
USGS Real-time Earthquakes
8 September 2011, by
Updated: September 2011
Language: français
Type: Text
-
SWFUpload Process
6 September 2011, by
Updated: September 2011
Language: français
Type: Text
-
La conservation du net art au musée. Les stratégies à l’œuvre
26 May 2011
Updated: July 2013
Language: français
Type: Text
-
Podcasting Legal guide
16 May 2011, by
Updated: May 2011
Language: English
Type: Text
-
Creativecommons informational flyer
16 May 2011, by
Updated: July 2013
Language: English
Type: Text
Other articles (26)
-
Les formats acceptés
28 January 2010, byLes commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
ffmpeg -codecs ffmpeg -formats
Les format videos acceptés en entrée
Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
Les formats vidéos de sortie possibles
Dans un premier temps on (...) -
Ajouter notes et légendes aux images
7 February 2011, byPour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
Modification lors de l’ajout d’un média
Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...) -
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 (...)
On other websites (7451)
-
iFrameExtractor no ffmpeg with build_universal script
15 August 2016, by AlecGambleI’m trying to follow this tutorial on how to extract the frames from an iphone video:
http://www.codza.com/extracting-frames-from-movies-on-iphone#more-343
It says to do the following:
- open Terminal
- clone the repository:
git clone git://github.com/lajos/iFrameExtractor.git
- go to the ffmpeg folder in the project:
cd iFrameExtractor/ffmpeg
- build the ffmpeg libraries:
./build_universal
So there’s no ffmpeg folder in iFrameExtractor after cloning the repository so I went to the github page and it says to download the latest version of ffmpeg and move to to the ffmpeg folder (I presume it just means within iFrameExtractor):
- Download the latest ffmpeg (0.11.1 tested):
git clone git://source.ffmpeg.org/ffmpeg.git
So I’ve done that but there’s no file or directory when I try to run
./build_universal
and I can see that there isn’t.Any ideas what I’m doing wrong?
Alternatively I was also looking at just installing ffmpeg-ios and trying to extract the frames myself:
https://github.com/kewlbear/FFmpeg-iOS-build-script
and I’ve run the script so I’ve got that folder in my xcode project as well but I’m unsure on how to link it properly?
-
NGINX RTMP convert flv to hls?
3 May 2016, by MandelDuckI have a server that takes an rtmp stream and saves it as flv.
Web users can view the flv video in their browser, however iPhone users can’t as it is flash
Is there away to convert the saved flv files on the fly to hls for the iPhone viewers?
here is my config, Webusers access the vod application
rtmp {
server {
listen 1935;
chunk_size 4096;
application live {
live on;
record all;
record_path /videos/av;
idle_streams off;
}
application audio {
live on;
record audio;
record_path /videos/audio;
idle_streams off;
}
application vod {
play /videos/av;
}
application aod {
play /videos/audio;
}
}
} -
Compile ffmpeg for WinRT with libvpx?
7 January 2018, by Sean O'NeilFollowing this guide:
https://trac.ffmpeg.org/wiki/CompilationGuide/WinRTCan anyone tell me if it’s possible to build and include libvpx into this?