Recherche avancée

Médias (0)

Mot : - Tags -/alertes

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

Autres articles (78)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

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

Sur d’autres sites (10741)

  • avformat/electronicarts : fix EOF check

    13 novembre 2022, par Marton Balint
    avformat/electronicarts : fix EOF check
    

    Similar to feof(), avio_feof() is only true after an actual overread.

    Signed-off-by : Marton Balint <cus@passwd.hu>

    • [DH] libavformat/electronicarts.c
  • H264 motion scale

    19 mai 2021, par user1315621

    What is the motion scale in in H264 motion vectors ?&#xA;Take a look a the following motion vectors that I extracted using pyav (pythonic bindings for libav - roughly same as ffmpeg) :

    &#xA;

    &#x27;source&#x27;, &#x27;w&#x27;, &#x27;h&#x27;, &#x27;src_x&#x27;, &#x27;src_y&#x27;, &#x27;dst_x&#x27;, &#x27;dst_y&#x27;, &#x27;flags&#x27;, &#x27;motion_x&#x27;, &#x27;motion_y&#x27;, &#x27;motion_scale&#x27;&#xA;-1,8,16,138,8,148,8,0,-40,0,4&#xA;-1,8,16,156,8,156,8,0,0,0,4&#xA;-1,16,16,168,8,168,8,0,0,0,4&#xA;

    &#xA;

    Consider the first line. It is my understanding that by multiplying src_x 138 by motion_scale 4 we get the actual src_x value in the image : that is the image has been downscaled by a factor of 4.

    &#xA;

    My question is the following : does the motion scale always have a unique value in within a packet or can it assume different values ?

    &#xA;

  • How to record RTSP to mp4 10 mins segements directly into FTP server

    30 octobre 2022, par HridyanshNarwal888

    I want to record a tcp RTSP stream in 10mins segments continuously which can be done with ffmpeg but i don't have enough storage on the actual device and i have many space on my FTP server

    &#xA;

    and i have no idea how to do it i've tried some codes which are recording it perfectly but cant sync to ftp at the same time

    &#xA;

    here the older code that i'm using

    &#xA;

    ffmpeg -rtsp_transport tcp -i rtsp://192.168.1.3:10554/tcp/av0_0 -f mp4 -t 60 ftp://my_ftp_url/%Y-%m-%d/%H-%M-%S.mp4  &#xA;but it gives the error

    &#xA;

    [mp4 @ 0x144ae00] muxer does not support non seekable output Could not write header for output file #0 (incorrect codec parameters ?): Invalid argument Error initializing output stream 0:0 --  Conversion failed! exit status 1

    &#xA;