
Recherche avancée
Médias (91)
-
GetID3 - Boutons supplémentaires
9 avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
-
Core Media Video
4 avril 2013, par
Mis à jour : Juin 2013
Langue : français
Type : Video
-
The pirate bay depuis la Belgique
1er avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
-
Bug de détection d’ogg
22 mars 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Video
-
Exemple de boutons d’action pour une collection collaborative
27 février 2013, par
Mis à jour : Mars 2013
Langue : français
Type : Image
-
Exemple de boutons d’action pour une collection personnelle
27 février 2013, par
Mis à jour : Février 2013
Langue : English
Type : Image
Autres articles (84)
-
List of compatible distributions
26 avril 2011, parThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...) -
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, 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 (...) -
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)
Sur d’autres sites (4848)
-
How to embed additional metadata to a video file in libavcodec (FFmpeg C source code fork)
7 mars 2023, par leavittxI'm extending an existing codec (Hap) inside ffmpeg library, adding some additional stuff to it (modifying FFmpeg code in my own fork of it)


One of the things I'd like to do is to store a per-file maximum encoded packet size in some global header/metadata so I can use it later while doing decoding (generally, the metadata/info to store can be arbitrary, size is just what I currently need for some specialized decoder I'm writing).


I'm modifying the ffmpeg code file
https://github.com/FFmpeg/FFmpeg/blob/master/libavcodec/hapenc.c


EDIT : What I'd like to achieve


- 

- Compute some numeric value during the encoding (namely, the maximum encoded frame size for the video - it's needed for a specialized fast decoder to not read all the frames beforehand) - that is done already
- Store that value in the video file metadata (looks like it should be done on container level)






My initial incorrect attempt :
But I don't currently see any possibility to save any info outside of a single packet being produced by
hap_encode
function and written toAVPacket *pkt
parameter.

- 

- Set dict parameter on
AVCodecContext *avctx
'spriv_data
:




av_opt_set_int(avctx->priv_data, "max_compressed_frame_size", <size>, 0);
 av_opt_set(avctx->priv_data, "max_compressed_frame_size", "", 0);
</size>


Later, while decoding
av_opt_get/av_opt_get_int
report non-existing key.

- 

- Set various
AVCodecContext *avctx
fields :




avctx->flags2 = <size>;
 avctx->extradata_size = <size>;
 avctx->ticks_per_frame = <size>;
 avctx->delay = <size>;
</size></size></size></size>


They all also seem to be not preserved when doing decoding later (I get just default values from decoder's
AVCodecContext
)

-
avcodec/mobiclip : Rewrite code to make it clearer
18 novembre 2021, par Andreas Rheinhardtavcodec/mobiclip : Rewrite code to make it clearer
In order to know that the earlier code did not use uninitialized
values one needs to know that the lowest four bits of each used
value of pframe_block4x4_coefficients_tab do not vanish identically.
E.g. Coverity did not get this and warned about it in ticket #1466632.
Fix this by slightly rewriting the code.Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
-
ftp: move common commands code to function
29 mai 2013, par Lukasz Marek