Recherche avancée

Médias (1)

Mot : - Tags -/école

Autres articles (112)

  • Configurer la prise en compte des langues

    15 novembre 2010, par

    Accéder à la configuration et ajouter des langues prises en compte
    Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
    De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
    Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains 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, par

    Pré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 (5738)

  • is there any way to any convert video to .mp4 format before uploading it on firebase ? [closed]

    30 décembre 2019, par Muhammad Hamza

    i’m uploading videos on firebase and playing them in exo-player
    as exo-player doesn’t support all formats so i’m thinking to convert video format of each video to .mp4 before uploading to firebase
    is it good option ?
    if it’s a good option can anyone guide me how to achieve that using FFMpeg and
    if you know better option please tell me ?

  • Creating .flv files on the iphone without using ffmpeg

    15 mars 2014, par inwit

    How does one create .flv files on the iPhone ?

    I am aware of ffmpeg (with its LGPL restrictions). But are there other APIs that have been ported to iOS ?

  • Efficient and Perfect way to extract frames from a large size video using python or ffmpeg according the timecode given

    5 avril 2020, par Yong En

    let's say I have a video from youtube with at least 600 MB. The video is used for annotation where I have the annotated information in another text file. The annotation file has the timecode in millisecond (SSSS.ss). What I am trying to do is going into the timecode on the video and getting out the frames within the this period (TWO timecodes). There are TWO approaches that I used with different tools, one is using openCV in python and FFmpeg in bash script :

    



    I would stick with few variables here,

    



      

    • fps = 25
    • 


    • timecode (after convert into second) = 333.44 to 334.00 take note that I am dealing with time period that might less than a second.
    • 


    



    openCV

    



      

    1. Using openCV in python, I read the video into frame by frame. Ends up with a numpy array.
    2. 


    3. Using the fps from video, eg. fps = 25. I can estimate where does the frames that fall under this time period which give me what I want.
    4. 


    5. Problem here is I will missed out some frames here due to the video fps is not really 25 as given by the video misinformation, it could 24.xx. Any solutions ?
    6. 


    



    ffmpeg

    



      

    1. What I did, every time I want to get the frames, I run the script.
    2. 


    3. Problem here is I need to read the video 100 times if I have 100 time periods. Any ways to overcome this ?
    4. 


    



    Thanks for reading it.