Recherche avancée

Médias (0)

Mot : - Tags -/protocoles

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

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 (8273)

  • using ffmpeg command line with python's subprocess module [on hold]

    3 décembre 2013, par user1485853

    I have few wav files that I can use either of the following command line mentioned here to concatenate

    ffmpeg -f concat -i <(for f in ./*.wav; do echo "file '$f'"; done) -c copy output.wav
    ffmpeg -f concat -i <(printf "file '%s'\n" ./*.wav) -c copy output.wav
    ffmpeg -f concat -i <(find . -name '*.wav' -printf "file '%p'\n") -c copy output.wav

    anyone know how to convert either of them to work with python's subprocess module, it would be better if your solution is platform independent .

    the <(...) notation does is create a temporary file to
    contain the result, and inserts that file name on the command line. so is there any way to create a temporary file by Python here ?

  • Are there any examples/documentation available that demonstrate how to use FFMPEG libraries directly in Python/C instead of the command line ?

    8 janvier 2021, par Zaid Bhat

    I want to perform the operation done by the below command line of FFMPEG but only using the command line. Instead I want to use the underlying libraries directly in Python and C to perform the operation :

    &#xA;

    ffmpeg -i "Filename.ts" -map 0:d -c copy -f data "outputfile.bin" | python ./klvdata_test.py

    &#xA;

    The task at hand is to extract the metadata. Are there any examples/documentation demonstrating the use of underlying libraries of FFMPEG.

    &#xA;

  • In-line way to create a thumbnail for a processed video

    11 avril 2022, par Cryden

    Usually, when FFmpeg converts a video the result does not have a thumbnail on my computer, only showing the default blank 'mp4' thumb. I am trying to make a command line that will convert videos and also give the output a thumbnail. I've found a lot of examples of how to pull an image from a video, but not how to in-line make sure it has a thumbnail.

    &#xA;

    The main function I want is for any type of video to be converted to hevc_nvenc/aac/mov_text.

    &#xA;

    Currently, my command looks like this :

    &#xA;

    ffmpeg -i "pth_in.mp4" -i "pth_in.mp4" -movflags faststart -map 0:v:0 -map 1:v -c:v hevc_nvenc -preset slow -map 1:a? -c:a aac -b:a 128k -map 1:s? -c:s ssa -filter:v:0 thumbnail,scale=360:-1,trim=end_frame=1 -c:v:0 mjpeg -disposition:0 attached_pic "pth_out.mp4"

    &#xA;

    where the double input and -filter:v:0 thumbnail,scale=360:-1,trim=end_frame=1 -c:v:0 mjpeg -disposition:0 attached_pic is supposed to create the thumbnail. It DOES, however, as it stands this command will also cause the video's seek bar to malfunction, only working for about 3 seconds using MPC-HC and VLC, although the video will still play in its entirety.

    &#xA;

    Is there any way to do this in 'one' pass like I'm trying ? Or do I have to split it up and do something else ? Is there any other faux pas I'm making ? Thanks for any help !

    &#xA;