
Recherche avancée
Médias (3)
-
The Slip - Artworks
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
-
Podcasting Legal guide
16 mai 2011, par
Mis à jour : Mai 2011
Langue : English
Type : Texte
-
Creativecommons informational flyer
16 mai 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (90)
-
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 ) (...) -
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 (...)
Sur d’autres sites (4991)
-
How can I do videos into a better format without losing resolution and quality ?
3 juillet 2020, par MelissaI have the job of developing a video converter program. I started to do a lot of research and development on this subject. I currently have a problem like this. The videos of the institution where I developed the converter are in mxf 50 megabit 4 : 2 : 2 format.
They want me to turn these videos into a better format without losing resolution and quality. For example, they said I could try h.265. In my work, the resolution and the quality of the video change in direct proportion when the format changes, how can I overcome this with an algorithm ? As I have just learned about the FFMPEG library, my view may be limited in this area. I am waiting for your help.


-
NodeJS create a storybook like youtube videos ?
24 septembre 2019, par Ben BeriI need to be creating something like this :
This image was generated using this package : https://www.npmjs.com/package/ffmpeg-generate-video-preview
However its not really suitable because my storybook has to be limited to 10x10 rows/cols and after every image I have to create a next one of 10x10. And I can’t really make it generate rows/columns automatically because it just doesn’t know what is the maximum amount of cols to generate based on the frames.
How can I do such thing with maybe using ffmpeg ?
-
Does this FFMPEG command create videos compatible with ABR playback on video.js player ?
16 mars 2018, par alchemicalWe’re working on a site that will allow users to upload videos. It then encodes these videos into 4 bitrates. The initial version just lets the user manually select which of the 4 version they would like to play. However, the final version should allow for adaptive bitrate ABR using video.js player. Ideally, we should not need to re-encode the videos again for them to stream with ABR.
I’m trying to understand if the current FFMPEG statement will support ABR :
-i \"0\" -i \"1\" -threads 5 -filter_complex \"
[0:v]scale=-2 :2[bg] ;[1:v]scale=-2:40*2/1080[watermark_scaled] ;[bg]
[watermark_scaled]overlay=x=main_w-overlay_w-(10*
2/1080):10*2/1080\" -acodec copy -vcodec libx264 -b:v
3 \"4\"