Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

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

Autres articles (102)

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

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

  • 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

Sur d’autres sites (10357)

  • How to adjust unequal durations of video and audio in the mp4 file ? [closed]

    11 juillet 2024, par Alex Rsk

    I have a MP4 file, let's say 10 sec length.
When I make ffprobe, i see that video track is 10 sec length, but audio track is 9.954 sec length.
How I can adjust these lengths to make audio track exactly 10s length with ffmpeg ?

    


    UPD. found the answer.
Thanks for downvotes.

    


  • Error "option not found" when trying to output a video file through decklink as PAL standard

    11 avril 2023, par seriously

    I have an ffmpeg build compiled with decklink which is running fine. What I want to achieve is to output a certain video file through the black magic decklinks sdi output port. To do so I used the command ffmpeg -standard PAL -i myvideo.mp4 -pix_fmt uyvy422 -s 1920x1980 -r 25000/1000 -f decklink "DeckLink SDI 4K" but I get error unrecognized option 'standard'. What am I doing wrong or want is the proper way to set PAL as the standard ? Thanks in advance.

    


    super user post suggesting to use -standard as a valid option : https://superuser.com/questions/885880/configure-ffmpeg-and-ffplay-to-pal-signal

    


  • Add a sample "CAMM" data to specific PTS in a MP4 file

    11 janvier 2023, par Cheloute

    For testing purpose, I need to add programatically some samples to an existing MP4 video file but I can't understand how.
My goal is to add some CAMM1 records (exposure data) associated to each PTS multiple of 33366, that's to say : PTS=0, PTS=33366, PTS=66732, ...

    


    I already have an existing camm track atom in my file, so the idea is to duplicate all the existing CAMM samples (CAMM2 and CAMM3 data), add my CAMM1 samples to the existing CAMM data, and write all the samples again at the end of the mdat atom (moov atom is located after mdat atom in my case). Next I'll update the CAMM track atom (stts, stsc, stsz and stco) to index all the samples correctly.

    


    But I have 1 question I can't understand. STSC and STCO are dealing with offsets and STTS with time and delta, how can I do to link my CAMM1 records to PTS multiple of 33366 ?

    


    Thanks