
Recherche avancée
Médias (2)
-
Granite de l’Aber Ildut
9 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
-
Géodiversité
9 septembre 2011, par ,
Mis à jour : Août 2018
Langue : français
Type : Texte
Autres articles (54)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Possibilité de déploiement en ferme
12 avril 2011, parMediaSPIP peut être installé comme une ferme, avec un seul "noyau" hébergé sur un serveur dédié et utilisé par une multitude de sites différents.
Cela permet, par exemple : de pouvoir partager les frais de mise en œuvre entre plusieurs projets / individus ; de pouvoir déployer rapidement une multitude de sites uniques ; d’éviter d’avoir à mettre l’ensemble des créations dans un fourre-tout numérique comme c’est le cas pour les grandes plate-formes tout public disséminées sur le (...) -
Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs
12 avril 2011, parLa manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.
Sur d’autres sites (5297)
-
ffmpeg to print encryption info of a AVPacket in a video stream
14 février 2021, par Keogh MathuinWhat I am looking for is a way of printing encryption info of each packet.


With encrypted streams, AVPacket has a
side_data
of'AV_PKT_DATA_ENCRYPTION_INFO (25)'
type. There is the'av_encryption_info_get_side_data'
function that takes this data and returnsAVEncryptionInfo
, that struct (amongst other important info) includes a sequence of sizes that will tell you which parts of the AVPacket are encrypted.

Ideally I think there probably is a nice elegant way of getting ffmpeg to print
AVEncryptionInfo
of each packet (like withtrace_headers
). It is possible to write my own function but my spidey senses tell me this might already exist as a ffmpeg option. I must admit at the moment I am using a debugger with a player and counting hex bytes of theside_data
with info from the above function. I've done this too many times now for my liking !

-
avutil/channel_layout : add missing check for AV_CHAN_NONE in av_channel_description
25 mars 2022, par James Almer -
How do you display things in the rails console for the user in Rails ?
30 décembre 2014, par Swaathi KI am using Streamio-ffmpeg to process files. The gem shows the progress of the transcoding in the console. I want to display this progress to the user. Is there anyway of doing this ?
This is my helper : (Where the transcoding is done)
if myfile.filetype == "video"
movie = FFMPEG::Movie.new(oldpath(myfile))
movie.transcode(newpath(myfile),"-deadline realtime -aq 10 -qmax 25") { |progress| puts progress }
FileUtils.rm_rf(oldpath(myfile))The
{ |progress| puts progress }
is responsible for printing the progress to the console. Can I display this in my views instead ?