Recherche avancée

Médias (91)

Autres articles (40)

  • 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 ;

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

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

  • Error "sys/videoio.h - not found" OpenCV 3.1.0

    9 juin 2020, par Jefferson Rodriguez

    
I using Elementary OS and I'm trying to install OpenCV 3.1.0, I follow the instructions of http://docs.opencv.org/3.0-beta/doc/tutorials/introduction/linux_install/linux_install.html
    
Also, I have installed libav 11.7 and ffmpeg 3.1.3
    
but, after cmake -D CMAKE_BUILD_TYPE=RELEASE -D CMAKE_INSTALL_PREFIX=/usr/local ..
I get :
    
— Looking for linux/videodev.h
    
— Looking for linux/videodev.h - found
    
— Looking for linux/videodev2.h
    
— Looking for linux/videodev2.h - found
    
— Looking for sys/videoio.h
    
— Looking for sys/videoio.h - not found
    
— Looking for libavformat/avformat.h
    
— Looking for libavformat/avformat.h - found
    
— Looking for ffmpeg/avformat.h
    
— Looking for ffmpeg/avformat.h - not found
    
— checking for module 'libgphoto2'
    
— package 'libgphoto2' not found
    
And after make,
    
I get :
    &#xA;../../lib/libopencv_videoio.so.3.1.0 : referencia a av_frame_alloc&#x27; sin definir <br />&#xA;../../lib/libopencv_videoio.so.3.1.0: referencia aav_frame_free' sin definir
    &#xA;collect2 : error : ld returned 1 exit status
    &#xA;make[2] : * [bin/opencv_test_video] Error 1
    &#xA;make[1] : *
    [modules/video/CMakeFiles/opencv_test_video.dir/all] Error 2&#xA;

    &#xA;&#xA;

    someone who can help me ?

    &#xA;

  • Getting "moov atom not found" error on linux but not windows/mac ?

    22 juin 2020, par flynnstone9

    Hey I have a tool I built that makes a video for me and it works locally on a mac / windows machine. I setup a digital ocean ubuntu server to host my app and the final video is giving a "moov atom not found" when running ffprobe output.mp4.

    &#xA;

    The way the video is being created is thru this cmd :

    &#xA;

    &#xA;

    ffmpeg -i 1.mp4 -i 3.mp4 -filter_complex "[0:v][0:a][1:v][1:a]concat=n=2:v=1:a=1" output.mp4

    &#xA;

    &#xA;

    I'm using slightly different versions of ffmpeg on linux v Mac. I was running 4.3-2ubuntu0 18.04.sav0 on linux and ffmpeg version 4.2.2 on Mac.

    &#xA;

    Is this a linux specific issue or is it something with the video container I'm missing ?

    &#xA;

  • Getting "Error while decoding stream #0:0 : Invalid data found when processing input" when using ffmpeg to convert tga to mp4

    22 juin 2020, par Calvin Godfrey

    I've used ffmpeg to convert a bunch of tga files into an mp4 just fine for a few weeks, but it broke for no apparent reason earlier today. I have a pastebin with -loglevel debug here, but the command I use is the same as the one that has worked before — ffmpeg -framerate 60 -i triangle%03d.tga output.mp4, and now it's broken.

    &#xA;

    The tga files are manually created by a C program that I wrote, but I don't think it's a problem with the file header/format because it hasn't been a problem with ffmpeg before before and I can open the tga files fine with eog and a tga viewer on Windows. Just in case it matters, here's the start of a hexdump for one of the files :

    &#xA;

    0000000 0000 0002 0000 0000 0000 0000 0780 0438&#xA;0000010 2018 ceeb eb87 87ce ceeb eb87 87ce ceeb&#xA;0000020 eb87 87ce ceeb eb87 87ce ceeb eb87 87ce&#xA;0000030 ceeb eb87 87ce ceeb eb87 87ce ceeb eb87&#xA;0000040 87ce ceeb eb87 87ce ceeb eb87 87ce ceeb&#xA;0000050 eb87 87ce ceeb eb87 87ce ceeb eb87 87ce&#xA;0000060 ceeb eb87 87ce ceeb eb87 87ce ceeb eb87&#xA;0000070 87ce ceeb eb87 87ce ceeb eb87 87ce ceeb&#xA;0000080 eb87 87ce ceeb eb87 87ce ceeb eb87 87ce&#xA;0000090 ceeb eb87 87ce ceeb eb87 87ce ceeb eb87&#xA;

    &#xA;

    Would appreciate any help on fixing the ffmpeg (or alternative ways to convert tga to mp4).

    &#xA;