Recherche avancée

Médias (10)

Mot : - Tags -/wav

Autres articles (43)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • Les vidéos

    21 avril 2011, par

    Comme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
    Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
    Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

Sur d’autres sites (6849)

  • Having problems running my unix ffmpeg script on windows

    3 octobre 2020, par zero credibility

    im trying to run this script for converting between the two formats of VR on a windows machine

    


    ffmpeg -i input.mp4 \
-filter_complex "[0:v]crop=in_w/2:in_h:0:0 [top];
[0:v]crop=in_w/2:in_h:in_w/2:0[bottom];
[top][bottom]vstack,
scale=iw*min(2000/iw\,2000/ih):ih*min(2000/iw\,2000/ih),
pad=2000:2000:(ow-iw)/2:(oh-ih)/2[outv]"
-map "[outv]" -map 0:a -c:a copy output_3dv.mp4


    


    from what ive found i think the \ characters need to be swapped with ^ like this

    


    ffmpeg ^
-i input.mp4 ^
-filter_complex "[0:v]crop=in_w/2:in_h:0:0 [top]; [0:v]crop=in_w/2:in_h:in_w/2:0[bottom]; [top][bottom]vstack, scale=iw*min(2000/iw,2000/ih):ih*min(2000/iw,2000/ih), pad=2000:2000:(ow-iw)/2:(oh-ih)/2[outv]" ^
-map "[outv]" -map 0:a -c:a copy output_3dv.mp4



    


    but its still falling over . would anyone have any pointers one where im going wrong please ?
thanks in advance

    


  • relocation error and no version information available when running ffmpeg

    19 avril 2022, par 이중범

    When ffmpeg is executed, a relocation error and no version information available appears.
The device is Jetsonano and the environment is Ubuntu 18.04 and the camera is using picam2.
I installed gcc version 6,7,8,9,11 and tried to run it, but I keep getting the same error

    


    I saw this and try it
https://github.com/DeTeam/webcam-stream/blob/master/Tutorial.md

    


    ffmpeg

    


    ffmpeg : /usr/lib/aarch64-linux-gnu/libcdio.so.17 : no version information available (required by /usr/lib/aarch64-linux-gnu/libcdio_paranoia.so.2)

    


    ffmpeg : /usr/lib/aarch64-linux-gnu/libcdio.so.17 : no version information available (required by /usr/lib/aarch64-linux-gnu/libcdio_cdda.so.2)

    


    ffmpeg : relocation error : /usr/lib/aarch64-linux-gnu/libcdio_paranoia.so.2 : symbolcdio_os_driver version CDIO_17 not defined in file libcdio.so.17 with link time reference

    


    thanks

    


  • Running ffmpeg command through python script

    2 avril 2020, par user2408159

    I am trying to execute ffmpeg commands in python.
When the following command was executed from command line in windows cmd it worked :

    



    C:\FFmpeg\bin\ffmpeg -rtbufsize 100000k -r 65535/2733 -f dshow -i audio="virtual-audio-capturer":video="screen-capture-recorder" output100.avi


    



    However when I try to run the this command in python in this way :

    



    cmd='C:\FFmpeg\bin\ffmpeg -rtbufsize 100000k -r 65535/2733 -f dshow -i audio="virtual-audio-capturer":video="screen-capture-recorder" output100.avi'
subprocess.call(cmd, shell=true)


    



    it doesn't work

    



    I also tried this way

    



    cmd='C:\FFmpeg\bin\ffmpeg -rtbufsize 100000k -r 65535/2733 -f dshow -i audio="virtual-audio-capturer":video="screen-capture-recorder" output100.avi'
subprocess.check_call(cmd) 


    



    But it didn't work as well

    



    I would like to know what am I doing wrong.I using python 2.76.Thanks.