Recherche avancée

Médias (0)

Mot : - Tags -/interaction

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (98)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 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 (...)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

  • Personnaliser l’affichage de mon Médiaspip

    27 mai 2013

    Vous pouvez modifier la configuration du squelette afin de personnaliser votre Médiaspip Voir aussi plus d’informations en suivant ce lien
    Comment supprimer le nombre de vues d’affichage d’un média ?
    Administrer > Gestion du squelette > Pages des articles et médias Cocher dans "Informations non affichées sur les pages de médias" les paramètres que vous ne souhaitez pas afficher.
    Comment supprimer le titre de mon Médiaspip dans le bandeau horizontal ?
    Administrer > Gestion du squelette > (...)

Sur d’autres sites (7206)

  • How can I extract images from an MPTS video(which has 4 videos in it) from each and every video using a single command ?

    21 octobre 2019, par geo-freak

    I have an MPTS video file, which has 4 videos in it. I want to extract images from each video and store them in a directory separately. I am using ffmpeg, I have seen references from previous solved questions.

    I used below command to extract frames.

    ffmpeg -threads 8 -i input.ts -s 400x222 -qscale:v 4 -start_number 0 -vf fps=1 /storage/frames/input_1//%d.jpg /storage/frames/input_2//%d.jpg /storage/frames/input_3//%d.jpg /storage/frames/input_4//%d.jpg

    But frames extracted only for first video in MPTS stream. How can I achieve using this using a single ffmpeg command ?

  • Python get list of streams from video (audio/video)

    2 août 2019, par user972014

    I have a video file and I want to get the list of streams from it. I can see the needed result by for example executing a simple `ffprobe video.mp4 :

    ....
    Stream #0:0(eng): Video: h264 (High) (avc1 / 0x31637661) ......
    Stream #0:1(eng): Audio: aac (LC) (mp4a / 0x6134706D), ......
    ....

    But I need to use python and code that will work both on Windows and Ubuntu, without executing an external process.

    My real goal is to check whether there is ANY audio stream within the video (a simple yes/no would suffice), but I think getting extra information can be helpful for my problem, so I’m asking about the entire streams

    EDIT : Clarifying that I need to avoid executing some external process, but looking for some python code/library to do it within the process.

  • Is there a way to concatenate mp4 video files in ffmpeg without video resolution switching ? [closed]

    15 mai 2024, par Micery999

    So i tried this command from windows

    


    (echo file 'first file.mp4' & echo file 'second file.mp4' )>list.txt
ffmpeg -safe 0 -f concat -i list.txt -c copy output.mp4


    


    while making a batch file

    


    Then i concatenate two video's and as soon as the one video ended. It changes resolution, then the video player started to glitch out pixel's like in vlc.

    


    Even if i typed

    


    ffmpeg -safe 0 -f concat -i list.txt -vf scale=640:360 -c copy output.mp4


    


    Nothing happened.