
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 (76)
-
Organiser par catégorie
17 mai 2013, parDans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...) -
Récupération d’informations sur le site maître à l’installation d’une instance
26 novembre 2010, parUtilité
Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...) -
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir
Sur d’autres sites (3822)
-
Burn subtitles with emojis on a video in android java
19 mars 2024, par Maor Cohenvideo.mp4, subtitles.ass


the ass file contains emojis. how to burn it on a video ? I tried ffmpeg.


ffmpeg -i video.mp4 -vf "ass=subtitles.ass" -c:a copy -c:v h264 -crf 23 -preset veryfast output.mp4


but the emojis are not showing. instead, rectangles are showing. it happens in every font I choose.


subtitles.ass :
Format : Name, Fontname, Fontsize, PrimaryColour, SecondaryColour, OutlineColour, BackColour, Bold, Italic, Underline, StrikeOut, ScaleX, ScaleY, Spacing, Angle, BorderStyle, Outline, Shadow, Alignment, MarginL, MarginR, MarginV, Encoding


Style : Default,opensans_bold,59,&Hffb3b4,&HF0000000,&H000000,&HF0000000,-1,0,0,0,100,100,0,0,1,5,0,2,64,64,604,1


[Events]


Format : Layer, Start, End, Style, Name, MarginL, MarginR, MarginV, Effect, Text


Dialogue : 0,0:00:00.00,0:00:00.68,Default,,0,0,0,,yes 😍😄💙


-
avcodec/libvorbisenc : Give CODEC_CAP_SMALL_LAST_FRAME to libvorbis encoder.
18 novembre 2014, par Peter Hallavcodec/libvorbisenc : Give CODEC_CAP_SMALL_LAST_FRAME to libvorbis encoder.
The libvorbis encoder already supports a small last frame, but the layer
above doesn’t know that because we didn’t register the small last frame
capability.Signed-off-by : Michael Niedermayer <michaelni@gmx.at>
-
ffmpeg : overlay video on top of a cropped video, map the overlay audio, cut the base video to the overlays length
14 mars 2023, par rokuI'm trying to overlay a video on top of a base video which is cropped to a shorts video format (standing phone). The overlayed video should be centered on top of the base layer. The base video's length should be reduced to the overlay's length. And I want to save only the overlay's audio.


I've tried a bunch of stuff without much success. The current state of my ffmpeg command is this :


ffmpeg -i overlay.mp4 -ss 00:00:00 -to <insert base="base"> -i base.mp4 -map 1:v:0 -map 1:a -vf "crop=ih*(9/16):ih" -crf 21 output.mp4
</insert>


But this only gives me the cropped version of the base video. So my questions are :


- 

- How can I figure out the base video's length ?
- How can I actually overlay (not map) other video on top of the base video ?
- How can I map the overlay's audio ? Since
-map 1:a
the base's audio and-map 0:a
says : "Stream map '0:a' matches no streams. To ignore this, add a trailing ' ?' to the map."








Any help is appreciated.