Recherche avancée

Médias (1)

Mot : - Tags -/ogv

Autres articles (68)

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

  • FFMpeg installation in Ubuntu 12.04 and using it in PHP-FFMpeg

    16 mai 2015, par SohelAhmedM

    I have tried many many failed attempt to install FFMpeg in my Ubuntu 12.04.
    I used following links : 1, 2, 3 and many others.

    Then I need to use it in PHP-FFMpeg
    And Then I need to deploy in Linux based server. This is my requirement.

    But after much trying, I just downloaded static build through this link.

    This helped me to successfully convert video and use FFMpeg through terminal in Ubuntu. But I cannot use it through PHP-FFMpeg library which I need to run. In docs of PHP-FFMpeg it is written

    This library requires a working FFMpeg install. You will need both
    FFMpeg and FFProbe binaries to use it. Be sure that these binaries can
    be located with system PATH to get the benefit of the binary
    detection, otherwise you should have to explicitely give the binaries
    path on load.

    and I am not getting this.

  • Anomalie #3184 (Nouveau) : md5_boutons_plugins()

    11 mars 2014, par Franck Dalot

    Bonsoir
    PHP 5.5.7, essai fait chez OVH
    prefix des tables "spipdev21"
    Installation faite en MySQL

    Installation par FTP de spip 2.1.26 [21251] puis passage en spip 3.0.16 [21253]
    Au lieu d’arriver sur la page qui m’indique comme quoi ma base de données va êtes mise à jour, je tombe sur une page blanche avec :
    Fatal error : Call to undefined function md5_boutons_plugins() in /.../ecrire/inc/filtres_ecrire.php on line 47
    Si je réactualise la page, cela fonctionne normalement.

    J’ai fait l’essai d’un passage de spip 2.1.26 [21251] vers spip 3.1 [21256] même problème.

    J’ignore si c’est http://core.spip.org/issues/2307 qui fait sont retour mais cela ressemble au cas que j’évoque (sauf que je ne vide pas le cache pour que cela soit bon)

  • How to crop and scale correctly with FFMPEG ?

    16 juin 2020, par Rivera A. Pablo

    I'm trying to remove the TOP AND BOTTOM black bars of a video.

    



    Image sample from video
image

    



    What i'm trying to achieve

    



    image

    



    The video itself is 1280x720 16:9, but the portion that's image information is at 4:3 since it's been captured from a VHS. I want to somehow stretch it until the top bars disappear without deforming the image. I don't care about the left and right bars.

    



    I tried using crop and scale with no luck.

    



    By using this code the top and bottom black bars disappeared on VLC when on normal screen but when going Full Screen the bars appeared again.

    



    ffmpeg -i test.avi -filter:v "crop=1280:670" output_video.mp4


    



    I thought it had something to do with the Scale of the video but honestly every scale code I tried to use deformed the image a lot.

    



    I hope someone can help me, fairly new to FFMPEG but really enjoying it this far.