Recherche avancée

Médias (0)

Mot : - Tags -/albums

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

Autres articles (97)

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

  • Qualité du média après traitement

    21 juin 2013, par

    Le bon réglage du logiciel qui traite les média est important pour un équilibre entre les partis ( bande passante de l’hébergeur, qualité du média pour le rédacteur et le visiteur, accessibilité pour le visiteur ). Comment régler la qualité de son média ?
    Plus la qualité du média est importante, plus la bande passante sera utilisée. Le visiteur avec une connexion internet à petit débit devra attendre plus longtemps. Inversement plus, la qualité du média est pauvre et donc le média devient dégradé voire (...)

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

Sur d’autres sites (5206)

  • How to use ffmpeg to encode mp4 to mov

    28 juin 2021, par user1526912

    I trying to use ffmpeg to encode a video for the first time. Can anyone tell me the exact command to encode a video in the following format :

    



    Music Video HD Source Profile

    



    ● Apple ProRes 422 (HQ)
● VBR expected at 220 Mbps
● HD encoded dimensions accepted to support square pixel aspect ratios (PASP) :
Encoded PASP Converted to ProRes From
1920 x 1080 1:1 HDCAM SR, D5, ATSC
1280 x 720 1:1 ATSC progressive

    



    ● HD encoded dimensions accepted to support non-square pixel aspect ratios (this allows you to send HD video in the native dimensions of your best original source, for example in HD broadcast dimensions*) :

    



    Encoded PASP Converted to ProRes From
1440 x 1080 1:1.33333 XDCAM-HD, HDCAM
1280 x 1080 1:1.5 DVCProHD interlaced
960 x 720 1:1.33333 DVCProHD progressive

    



    Native frame rate of original source :

    



    ● 29.97 interlaced frames per second for video sourced
● 24 or 25 progressive frames per second for film sourced
● 23.976 progressive frames for inverse telecine sourced from film
● Telecine materials will not be accepted

    



    ● HD source may be delivered matted : letterbox, pillarbox, or windowbox.

    



    Music Video Audio Source Profile

    



    Stereo
● MPEG-1 layer II stereo
● 384 kpbs
● 48Khz
● Included in the same file as the delivered video

    


  • ffmpeg scaling not working for video

    15 mai 2018, par Neer Patel

    I am trying to change the dimensions of the video file through FFMPEG.
    I want to convert any video file to 480*360 .

    This is the command that I am using...

    ffmpeg -i oldVideo.mp4 -vf scale=480:360 newVideo.mp4

    After this command 1280*720 dimensions are converted to 640*360.

    I have also attached video. it will take less than minute for any experts out there. Is there anything wrong ?

    You can see here. (in Video, after 20 seconds, direclty jump to 1:35 , rest is just processing time).

    UPDATE :

    I found the command from this tutorial

  • ffmpeg - why does hstack fail with " width not divisible by 2" When both of my inputs have even heights ?

    26 août 2020, par Nic Thibodeaux

    Here's the command I'm using to horizontally stack 2 mp4's together :

    


    ffmpeg -y  -i input1.mp4 -i input2.mp4 -filter_complex "[0:v][1:v]hstack[v]" -map "[v]" -vsync 0 stacked.mp4

    


    input1.mp4 has dimensions 594x512, and input2.mp4 has dimensions 512x512. I get this error in return :

    


    width not divisible by 2 (1113x512)
Error initializing output stream 0:0 -- Error while opening encoder for output stream #0:0 - maybe incorrect parameters such as bit_rate, rate, width or height


    


    The confusing thing is that 1113 is such an odd number - it is not 1024, and not even 512+594 (1106). What is causing the assumed width to be such a strange value ?