Recherche avancée

Médias (1)

Mot : - Tags -/copyleft

Autres articles (96)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

Sur d’autres sites (11676)

  • Trim multiple clips with one command of FFmpeg

    1er août 2023, par Gabbar Singh
      

    1. I have a video called 1.mp4

      


    2. 


    3. I want to extract 17+17= 34 total clips from this video with one FFmpeg command

      


    4. 


    5. Each clip should have a unique name like 1a 1b 1c 1d and so on.

      


    6. 


    7. 17 clips will have a 1920x1080 dimension
and remaining 17 will have 720x720 dimension

      


    8. 


    9. I will appreciate if someone can help me to do this. It will save my several hours.

      


    10. 


    


  • How to concatenate multiple videos [closed]

    23 mai 2021, par Chand Hernan

    I am new to the programming world and I am trying to make a program to automate parte of my work

    


    I need to join multiple mp4 videos, I have tried to use moviepy but it takes a long time to export. They also recommended me to use ffmpeg but I could not

    


    There are 5 videos, and in total it gives a video of 9 minutes in high quality. I would like to lower the quality to be able to make the process faster

    


    An apology if my translation is not entirely correct

    


  • getting video file duration from adb shell

    2 août 2014, par Ganesh Sonthi

    I am writing some code using Ui Automator in Android which needs to play video files until END. For most of the files i am able to get the duration in Right bottom of the player and able to give Sleep duration as same of that.

    But for some of the files [mpg] the playback and total duration displaying as 0.00. VLC-Android and PC will be able to display the duration properly like 23seconds .. etc.. I already tried MediaMetaDataRetriever method as mentioned in How to get length in milliseconds of video from URL without video view in Android ? but here also i got ’0’ as duration.

    So, in this case i need some sort of solution which will be able to provide me some solution to get the duration of the file - Either by using adb shell or by passing some commands or some APK which can display duration and can be invoked by command line along with file URI.

    Can anyone please suggest some method.