Recherche avancée

Médias (0)

Mot : - Tags -/metadatas

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

Autres articles (66)

  • Mise à jour de la version 0.1 vers 0.2

    24 juin 2013, par

    Explications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
    Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...)

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

Sur d’autres sites (13213)

  • How to build Soltion and Run Without ffmpeg shared DLL(Static Build Solution)

    11 avril 2018, par P Akhtar

    I want to build a solution in visual studio 2009 and run exe without FFMPEG Shared DLL. Simply I want to build my solution static

    Similar Question
    visit : How to use ffmpeg so that there would be no need in including its dlls in your app folder ?

    I built ffmpeg static lib and than I got

    libavdevice.a
    libavcodec.a
    libavfilter.a
    libavformat.a
    libavutil.a
    libpostproc.a
    libswresample.a
    libswscale.a

    But Issue is how I Can use it there is linking error-> like error LNK2001 : unresolved external symbol __ltod3 and and other more

  • PHP and FFMPEG advice/solution for a unknown issue

    26 mars 2018, par sonam Sharma

    I am having a live video streaming website and I allow people to upload all the video files to the site till now everything is ok.

    What I am doing is that I am using FFMPEG to convert the video to mp4 and also get a image out of the video after 20 seconds.

    The code that I am using is that :

    require 'vendor/autoload.php';
           $getEXT_check=substr(@$_FILES['profileimage99']['name'],-3);
           if($getEXT_check !='mp4' && $getEXT_check !='MP4'){
           exec('ffmpeg -i '.$uploadfile.' -f mp4 -s 896x504 '.$new_flv.''); }
           //execute ffmpeg and create thumb
           exec('ffmpeg  -i '.$uploadfile.' -ss 00:00:20 -vframes 1  '.$new_image_path);
           $theduration=exec('ffprobe -v error -show_entries format=duration -of default=noprint_wrappers=1:nokey=1 '.$uploadfile.' 2>&1');
           $theduration_val=round($theduration/60, 2);

    What issue I am having is that

    1. sometimes the code dosent extract the image out of video
    2. video conversation takes very long time for non mp4 video (I am not converting mp4 videos)

    Some info what I have done on server. During the development of site I installed ffmpeg on my pc and downloaded the vendor directory by composer.json file. But I have not done these things on my server I have a dedicated server from bluehost and have ffmpeg installed at this location.

    /usr/local/bin/ffmpeg
    /usr/local/bin/mplayer
    /usr/local/bin/mencoder
    /usr/bin/flvtool2
    /usr/local/bin/MP4Box
    /usr/local/bin/yamdi

    During uploading the site what I did is that I also uploaded the vendor directory and all the files and made the site live. I haven’t used any of the path as given by my server admin after asking.

    Please suggest me something where I am doing wrong.

  • Looking for a solution to my ffmpeg video overlay code :

    16 mars 2018, par Michael Hovan

    Looking for a solution to my ffmpeg video overlay code :

    import subprocess as sp

    cmd='ffmpeg', '-i', 'C:/Users/Michael.hovan/Desktop/test/front.mov', '-i', 'C:/Users/Michael.hovan/Desktop/test/persp.mov', '-i', 'C:/Users/Michael.hovan/Desktop/test/side.mov', '-i', 'C:/Users/Michael.hovan/Desktop/test/top.mov', '-filter_complex' \
    '[1:v]scale=iw/4:-1:flags=lanczos[pip1];' \
    '[2:v]scale=iw/4:-1:flags=lanczos[pip2];' \
    '[3:v]scale=iw/4:-1:flags=lanczos[pip3];' \
    '[0:v][pip1]overlay=main_w-overlay_w-10:main_h-overlay_h-10[bg1];' \
    '[bg1][pip2]overlay=(main_w-overlay_w)/2:main_h-overlay_h-10[bg2];' \
    '[bg2][pip3]overlay=10:main_h-overlay_h-10,format=yuv420p[v];' \
    '[0:a][1:a][2:a][3:a]amerge=inputs=4[a]' \
    '-map', '[v]', '-map', '[a]', '-ac', '1', 'C:/Users/Michael.hovan/Desktop/test/output.avi'

    sp.call(cmd)

    I’m honestly stumped as to why the code is giving me a "returned non zero exit status".