Recherche avancée

Médias (0)

Mot : - Tags -/formulaire

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

Autres articles (71)

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

  • Additionals : Add notEqualTo method

    17 février 2015, par robotdan
    Additionals : Add notEqualTo method
    

    New method ‘notEqualTo’ that delegates to the equalTo method and
    returns the inverted value.

    Closes #1020

  • Saving RTP stream on file for later conversion to MP4 format

    23 avril 2024, par Alberto Pastore

    I need to acquire a short RTP video stream (15 to 90 seconds) on a local on-premise small device. The device is not capable of creating natively a MP4 file by itself.

    


    The device is simply saving RTP packets on a local dump file as received. This file is then sent to a remote server after the stream has ended.

    


    I have no control on the local device (I cannot change its software or its behavior).
I need to convert this RTP "dump" file to MP4 format on the remote server, where I can run my own software.

    


    I am trying to figure out a quick&dirty way to perform this conversion without having to write too much "low level" code (i.e. reading the source file, analyzing packets, creating the destination MP4 and copying the encoded stream in the proper format...).

    


    So far I've tried several combinations of ffmpeg command line switches but I was always unsuccesful.

    


    Is there a way to perform this conversion without re-streaming the rtp packets live to ffmpeg ?

    


  • ffmpeg correct audio streams when appending

    28 janvier 2013, par brux

    I am appending 2 mp4 files together using the following routine :

    ffmpeg -y -i one.mp4 -vcodec copy -vbsf h264_mp4toannexb -acodec copy one.ts
    ffmpeg -y -i two.mp4 -vcodec copy -vbsf h264_mp4toannexb -acodec copy two.ts

    cat one.ts two.ts >> joined.ts

    ffmpeg -y -i joined.ts -vcodec copy -acodec copy -absf aac_adtstoasc joined.mp4

    This works fine, however when one.mp4 has no audio stream (the file is created using ffmpeg from a single jpeg, so no sound), the routine appends the files but the audio of two.mp4 starts at the beginning of the video. how should I solve this problem ? Should I add switches to my append routine so that the audio in two.mp4 starts playing where it should, or should I add something to the ffmpeg command which creates the video from jpg ?

    here is the command I use to create one.mp4 which contains no sound :

    ffmpeg -y -loop 1 -i blah.jpg -t 3 -vcodec libx264 one.mp4