Recherche avancée

Médias (91)

Autres articles (70)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

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

  • XMP PHP

    13 mai 2011, par

    Dixit Wikipedia, XMP signifie :
    Extensible Metadata Platform ou XMP est un format de métadonnées basé sur XML utilisé dans les applications PDF, de photographie et de graphisme. Il a été lancé par Adobe Systems en avril 2001 en étant intégré à la version 5.0 d’Adobe Acrobat.
    Étant basé sur XML, il gère un ensemble de tags dynamiques pour l’utilisation dans le cadre du Web sémantique.
    XMP permet d’enregistrer sous forme d’un document XML des informations relatives à un fichier : titre, auteur, historique (...)

Sur d’autres sites (8787)

  • avcodec/dca_core : always limit frame size to data size

    9 octobre 2017, par foo86
    avcodec/dca_core : always limit frame size to data size
    

    Silences pointless error message when decoding DTS-in-WAV stream with
    excessive frame size stored in header.

    • [DH] libavcodec/dca_core.c
  • How to accquire the real size(rendering size) of a video through ffmpeg

    3 décembre 2024, par Lin Xing

    Here is the video video, when i use the ffmpeg command line tool to read it's basic information(via : ffmpeg -i xxx.mp4), i get the size "720x1080", but when i open this video through chrome or VLC, i got the size "720x1271". why the rendering size is 720x1271 ?
chrome browser :
enter image description here
ffmpeg -i :
enter image description here

    


    When i extract the h264 format data out of this video, i still get the size of height 1080. But when you play it with chrome browser or VLC, it's height is 1271, It confuse me.

    


  • How to use ffmpeg on Android, Kivy, python3, youtube-dl

    7 avril 2022, par Adarsh Singh

    I am trying to create an app using Kivy 1.11.1 using youtube-dl module in python3. I am using buildozer to create apk from python source code which usage python-for-android to create apk. I have mentioned ffmpeg in buildozer requirements. I can see ffmpeg in pythonforandroid/recipes/.
After installing form apk, when I try to print ffmpeg version using the following

    


    merger = youtube_dl.postprocessor.FFmpegMergerPP()
merger._determine_executables()
print(merger.get_versions())


    


    I get this output

    


    {'avprobe': False, 'avconv': False, 'ffmpeg': False, 'ffprobe': False}


    


    which indicate that ffmpeg in not installed in android

    


    this line is included in my buildozer.spec

    


    requirements = python3,kivy,ffmpeg,youtube_dl,kivymd,kivmob,ffpyplayer,ffpyplayer_codecs,ffmpeg-python


    


    except ffmpeg rest all package are installed properly

    


    I am not sure whether this is useful but I saw this in pythonforandroid/recipes/ffmpeg/init.py

    


    def build_arch(self, arch):
        with current_directory(self.get_build_dir(arch.arch)):
            env = arch.get_env()

            flags = ['--disable-everything']


    


    **Goal : ** I want to use ffmpeg in youtube_dl via python3 after installing application from apk created by buildozer.