
Recherche avancée
Autres articles (63)
-
Gestion générale des documents
13 mai 2011, parMédiaSPIP ne modifie jamais le document original mis en ligne.
Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet ; la récupération des métadonnées du document original pour illustrer textuellement le fichier ;
Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP (...) -
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)
Sur d’autres sites (10719)
-
RELEASE : update release number after release/7.1 branch
5 octobre 2024, par Martin Schitter -
Anomalie #3630 : Logo d’auteur et fonction de recherche de logo
13 août 2016, par b bJe dépose ici la discussion qui a eu lieu à ce sujet sur IRC pour en garder une trace :
< marcimat > dans id_table_objet() je vois que ça fait un traitement même si on passe ’id_auteur’ < marcimat > du coup, je me dis que quête logo < marcimat > pourrait tester si substr($type, 0, 3) !== ’id_’ < marcimat > appeler id_table_objet($type) < marcimat > non ? < marcimat > c’est peut être un compromis < marcimat > ou un strcmp < phenix_spip > Pourquoi faire un test ? < marcimat > parce que je vois des calculs dans id_table_objet() systématiques < marcimat > même si on envoie déjà id_truc < phenix_spip > ? < phenix_spip > Ha je vois < marcimat > @id_table_objet() < Edgard > Hop http://code.spip.net/@id_table_objet - Hop (sinon) http://code.spip.net/spip.php?page=recherche&recherche=id_table_objet < marcimat > https://core.spip.net/projects/spip/repository/entry/spip/ecrire/base/objets.php#L1066 donc < marcimat > mais effectivement, je pense que ça doit pas gêner si quête_logo est simplifié < phenix_spip > marcimat : ce serai plus logique que le test soit dans id_table_objet non ? < marcimat > enfin modifié pour accepter un vrai type < marcimat > certes, mais c’est déjà plus sensible ^^ < phenix_spip > ? < marcimat > ok < marcimat > en fait objet_type() teste déjà en enlevant id_ < marcimat > donc, y pa pas spécialement besoin < phenix_spip > Ben voilà :) < marcimat > donc là https://core.spip.net/projects/spip/repository/entry/spip/ecrire/base/objets.php#L1070 < marcimat > objet_type(’id_auteur’) doit ressortir ’auteur’ < marcimat > oui, voilà :) < marcimat > all is fine
-
Fuji .mov file converted by ffmpeg doesn't play in Windows Media Player [closed]
30 août 2023, par glipsterMy Fuji X-T3 generates an FHD movie as a .mov with HEVC video and PPM audio. The new Media Player on Windows won't play this (without buying a codec) so I convert it to .mp4 using ffmpeg CLI (ffmpeg -i in.mov out.mp4). The resulting .mp4 file uses AVC video and AAC LC audio. This plays fine in VLC, but will not play in Windows Media Player nor Media Player. I've experimented with various options, but nothing seems to work.
For the original source .mov file, MediaInfo identifies 3 streams :
1stVid : English, 201Mb/s, 1920*1080 (16:9), at 29.970 FPS, HEVC (Main10@L5.2@High)
1stAud : english, 2304 kb/s, 48.0 hKz, 24 bits, 2 channels,PCM (Little/Signed)
1 : QuickTime TC


The Output .mp4 file shows :
1stVid : English 3312kb/s, 1920*1080 (16:9) at 29.970 FPS, AVC (High 10@L4)(CABAC/4 RefFrames)
1stAud : English 132 kb/s, 48.0 kHz, 2 channels, AC LC
1 : QuickTime TC


Using ffmpeg CLI, I tried changing the bitrates for the video and audio, I tried removing the timecode stream, tried a different AAC codec, tried moving the metadata to the front (-movflags faststart), also tried -strict experimental, tried first converting to .mkv (which does work) and then converting to .mp4 (with and without copy). I had hoped one of these might work ; but nothing has worked thus far.


Has anyone else solved this problem ? Any help would be greatly appreciated.