
Recherche avancée
Médias (91)
-
Richard Stallman et le logiciel libre
19 octobre 2011, par
Mis à jour : Mai 2013
Langue : français
Type : Texte
-
Stereo master soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
Elephants Dream - Cover of the soundtrack
17 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Image
-
#7 Ambience
16 octobre 2011, par
Mis à jour : Juin 2015
Langue : English
Type : Audio
-
#6 Teaser Music
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#5 End Title
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
Autres articles (104)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
ANNEXE : Les plugins utilisés spécifiquement pour la ferme
5 mars 2010, parLe site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)
-
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.
Sur d’autres sites (12131)
-
upload video on local host
20 avril 2017, par chan jackwhen i upload video on local host have error #Unable to detect any supported library#
@internal_information = InternalInformation.new(internal_information_params)
if @internal_information.update(internal_information_params)
respond_to do |format|
this is my code below
Model
class InternalInformation < ApplicationRecord
has_attached_file :video , styles: {
:medium => { :geometry => "640x480", :format => 'mp4' },
:thumb => { :geometry => "100x100#", :format => 'jpg', :time => 10 }
}, :processors => [:transcoder]
validates_attachment_content_type :video, content_type: /\Avideo\/.*\Z/
endController
def create
@internal_information = InternalInformation.new(internal_information_params)
respond_to do |format|
if @internal_information.save
format.html { redirect_to @internal_information, notice: 'Internal information was successfully created.' }
format.json { render :show, status: :created, location: @internal_information }
else
format.html { render :new }
format.json { render json: @internal_information.errors, status: :unprocessable_entity }
end
end
end
# PATCH/PUT /internal_informations/1
# PATCH/PUT /internal_informations/1.json
def update
respond_to do |format|
if @internal_information.update(internal_information_params)
format.html { redirect_to @internal_information, notice: 'Internal information was successfully updated.' }
format.json { render :show, status: :ok, location: @internal_information }
else
format.html { render :edit }
format.json { render json: @internal_information.errors, status: :unprocessable_entity }
end
end
endShow
<%= javascript_include_tag 'swfobject' %>
<p><%= notice %></p>
<p>
<strong>Title:</strong>
<%= @internal_information.Title %>
</p>
<p>
<%= video_player({:file => @internal_information.video.url(:medium), :image => @internal_information.video.url(:thumb)}) %>
</p>
<%= link_to 'Edit', edit_internal_information_path(@internal_information) %> |
<%= link_to 'Back', internal_informations_path %> -
How to use FFmpeg compression methods in our own C project ?
29 février 2016, par Sir DrinksCoffeeALotI’m currently working on compressing video data on one port and sending it to another port where the data will be decompressed. I would like to try LZW compression method. I’m using pretty old and outdated FFmpeg build (only .h, .lib, .dll files). Problem is that i don’t have any headers to include to get access to LZW encoder and decoder.
Idea is to open video file, split it into frames, compress them using one of the methods and send them to some remote location where they will be decompressed and concencated into video file.
-
Embedding SMPTE 336M KLV data into video
8 décembre 2023, par MateoI have a drone video in .MP4 format, and an accompanying log file containing various timecoded data, e.g. GPS location, altitude.



I need to embed the data into the video in the SMPTE 336M (KLV Data Encoding Protocol Using Key-Length-Value) standard format.



I've successfully extracted KLV data from a MPEG2-TS file using FFMPEG and a parser in Node.



Now I need to go the other way : to generate KLV data from my log file and insert it into the relevant video. How this is done ?