Recherche avancée

Médias (0)

Mot : - Tags -/xmp

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

Autres articles (53)

  • MediaSPIP en mode privé (Intranet)

    17 septembre 2013, par

    À partir de la version 0.3, un canal de MediaSPIP peut devenir privé, bloqué à toute personne non identifiée grâce au plugin "Intranet/extranet".
    Le plugin Intranet/extranet, lorsqu’il est activé, permet de bloquer l’accès au canal à tout visiteur non identifié, l’empêchant d’accéder au contenu en le redirigeant systématiquement vers le formulaire d’identification.
    Ce système peut être particulièrement utile pour certaines utilisations comme : Atelier de travail avec des enfants dont le contenu ne doit pas (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Support de tous types de médias

    10 avril 2011

    Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)

Sur d’autres sites (4161)

  • avformat/mpegtsenc : fix first_pcr initial update

    3 novembre 2021, par Maksym Veremeyenko
    avformat/mpegtsenc : fix first_pcr initial update
    

    Commit 6f36eb0da71d22aadf8f056f0966bd86656ea57e claim it fixes endless loop on
    package generation if muxrate specified and copyts used. But actually it does
    not work properly if -mpegts_copyts 1 is specified :

    ffmpeg -y -copyts -i loewe.ts -c:v libx264 -x264opts nal-hrd=cbr:force-cfr=1 -b:v 3500k -minrate 3500k -maxrate 3500k -bufsize 1000k -c:a mp2 -f mpegts -mpegts_copyts 1 -muxrate 4500k -vframes 1000 test.ts

    ffmpeg generate huge file until it reach zero-based pcr value equal to first dts.

    Attached patch fixes it.

    Reviewed-by : Limin Wang <lance.lmwang@gmail.com>
    Signed-off-by : Marton Balint <cus@passwd.hu>

    • [DH] libavformat/mpegtsenc.c
  • Invalid CFBundleSupportedPlatforms value iPhoneSimulator in (DJIWidget) FFmpeg.framework

    10 mai 2022, par Brien Crean

    I cannot upload my app which contains the DJI-SDK, DJIWidget(which contains FFMpeg) to Testflight after updating to Xcode 13. When I try I get :

    &#xA;

    &#xA;

    Invalid CFBundleSupportedPlatforms value. The&#xA;CFBundleSupportedPlatforms key in the Info.plist file in&#xA;“Payload/app.app/Frameworks/FFmpeg.framework” bundle contains an&#xA;invalid value, [iPhoneSimulator]. Consider removing the&#xA;CFBundleSupportedPlatforms key from the Info.plist file. If this&#xA;bundle is part of a third-party framework, consider contacting the&#xA;developer of the framework for an update to address this issue. With&#xA;error code STATE_ERROR.VALIDATION_ERROR.90542 for id&#xA;f2327257-ad48-4b60-8fc8-a518da5fbac8

    &#xA;

    &#xA;

    # relevant pods&#xA;pod &#x27;DJI-SDK-iOS&#x27;, &#x27;~> 4.16&#x27;&#xA;pod &#x27;DJIWidget&#x27;, &#x27;~> 1.6.6&#x27;&#xA;

    &#xA;

    However FFMpeg seems to be a binary file Framework attached to DJIWidget so I can't edit the Info.plist directly. Is there any way to workaround this or do I have to reach out to the DJI to actually make a change ?

    &#xA;

  • FFMPEG command line not using GPU when compressing MP4 file

    13 avril 2022, par StealthRT

    Hey all I have been working on a good command line string to use for my movies that I would like to trim the size down to at least half the current size.

    &#xA;

    My handbrake information regaurding my GPU and computer system is this :

    &#xA;

    HandBrake 1.5.1 (2022011000)&#xA;OS: Microsoft Windows NT 10.0.19043.0&#xA;CPU: Intel(R) Xeon(R) CPU           X5650  @ 2.67GHz (12 Cores, 24 Threads)&#xA;Ram: 40940 MB, &#xA;GPU Information:&#xA;  Microsoft Remote Display Adapter - 10.0.19041.662&#xA;  NVIDIA Tesla K10 - 30.0.14.7141&#xA;  NVIDIA Tesla K10 - 30.0.14.7141&#xA;  Microsoft Basic Display Adapter - 10.0.19041.868&#xA;

    &#xA;

    When I originally made a command line, I was just using it to copy the file over to where it needed to go with the following :

    &#xA;

    &#xA;

    ffmpeg -y -hide_banner -threads 8 -hwaccel cuda -hwaccel_device 1&#xA;-hwaccel_output_format cuda -v verbose -i "c :\testingvids\AEON FLUX 2005.mp4" -c:v h264_cuvid -gpu:v 1 -preset slow -c copy "c :\testingvids\AEON FLUX 2005 nvidia.mp4"

    &#xA;

    &#xA;

    This produced a 828x processing speed :

    &#xA;

    enter image description here

    &#xA;

    But for taking that same file and compressing it I seem to only get a 8x speed ?

    &#xA;

    enter image description here

    &#xA;

    So that is quite a difference there. Am I using the correct syntax for it to only use my GPU to convert/compress the mp4 with the h264 nvenc ?

    &#xA;