Recherche avancée

Médias (2)

Mot : - Tags -/doc2img

Autres articles (67)

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

  • How do I download a list mpd with ffmpeg

    13 mai 2016, par Don Donllei

    I did download the video from a site that used M3U8 but he moved to mpd and do not know how do I download it.

    <mpd type="static" minbuffertime="PT1S" mediapresentationduration="PT0H1M56.320S" profiles="urn:mpeg:dash:profile:full:2011"><programinformation moreinformationurl="http://gpac.sourceforge.net"></programinformation><period start="PT0S" duration="PT0H1M56.320S"><adaptationset segmentalignment="true" maxwidth="1920" maxheight="1080" maxframerate="25" par="16:9"><contentcomponent contenttype="video"></contentcomponent><contentcomponent contenttype="audio"></contentcomponent><segmenttemplate timescale="1000" duration="9693" media="$RepresentationID$/Y7aRjDxbh_$Number$.m4s" startnumber="1" initialization="$RepresentationID$/Y7aRjDxbh_init.mp4"></segmenttemplate><representation mimetype="video/mp4" codecs="avc3.64000d,mp4a.40.2" width="320" height="240" framerate="25" sar="4:3" audiosamplingrate="44100" startwithsap="1" bandwidth="400000">
       </representation><representation mimetype="video/mp4" codecs="avc3.64001e,mp4a.40.2" width="720" height="480" framerate="25" sar="32:27" audiosamplingrate="44100" startwithsap="1" bandwidth="900000">
     </representation><representation mimetype="video/mp4" codecs="avc3.64001f,mp4a.40.2" width="960" height="720" framerate="25" sar="4:3" audiosamplingrate="44100" startwithsap="1" bandwidth="1500000">
      </representation><representation mimetype="video/mp4" codecs="avc3.640028,mp4a.40.2" width="1920" height="1080" framerate="25" sar="1:1" audiosamplingrate="44100" startwithsap="1" bandwidth="3500000">
      </representation><representation mimetype="video/mp4" codecs="avc3.640028,mp4a.40.2" width="2730" height="1440" framerate="25" sar="1:1" audiosamplingrate="44100" startwithsap="1" bandwidth="10000000">
      </representation><representation mimetype="video/mp4" codecs="avc3.640028,mp4a.40.2" width="4096" height="2160" framerate="25" sar="1:1" audiosamplingrate="44100" startwithsap="1" bandwidth="20000000">
      </representation></adaptationset></period></mpd>
  • Android FFMpeg No such file or directory error

    2 juin 2016, par GuyZ

    I am using ffmpeg for android (using the gradle plugin ’com.writingminds:FFmpegAndroid:0.3.2’) and I am trying to crop a video to a 16:9 (w:h) ratio. The original video is 1080:1920 (w:h).
    When I execute the command I get an IOException No such file or directory.

    The command I am using :

    -i /storage/emulated/0/Movies/MyApp/result_joined.mp4 -vf crop=1080:607   -preset ultrafast /storage/emulated/0/Movies/MyApp/result_cropped.mp4

    The exception :

    java.io.IOException: Error running exec(). Command:
    [/data/user/0/my.package.name/files/ffmpeg, -i, /storage/emulated/0/Movies/MyApp/result_joined.mp4, -vf, crop=1080:607, -preset, ultrafast, /storage/emulated/0/Movies/MyApp/result_cropped.mp4] Working Directory: null Environment: null
    Caused by: java.io.IOException: No such file or directory

    After searching several stack overflow questions with no help.
    I also tried to save files to internal storage instead of external storage. Same result

    Any help ?

  • C++ : Combine 4 YV12 images to a single image (4 quadrants). FFMPEG ?

    1er juin 2016, par Paul Knopf

    I have 4 YV12 buffers that I need to combine to a single buffer (4 quadrants).

    I could manually write a bunch of memcpy stuff with offsets, but I fear performance issues.

    Is there an FFMPEG method that I can use to achieve this ?

    AVFrame* topLeft = ...
    AVFrame* topRight = ...
    AVFrame* bottomLeft = ...
    AVFrame* bottomRight = ...
    AVFrame* destination = ... // topLeft-size + topRight->size + bottomLeft->size + bottomRight ->size

    Maybe there is a method with a similar signature here ?

    void blend_image(AVFrame* src, AVFrame dest, int x, int y);

    Then...

    blend_image(topLeft, destination, 0, 0);
    blend_image(topRight, destination, 1920, 0);
    blend_image(bottomLeft, destination, 0, 1080);
    blend_image(bottomRight, destination, 1920, 1080);

    Any guidance would be greatly appreciated.