Recherche avancée

Médias (5)

Mot : - Tags -/open film making

Autres articles (56)

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

  • How do I convert flac to wav on iOS ?

    8 juin 2017, par popctrl

    I have a file which is encoded with FLAC and I want to convert it to WAV.

    I have added this FFMpeg lib to my project and imported it.

    I see some code from this answer, but I am unclear on how to use it :

    #import "avformat.h"

    // Some code goes here

    /*
    *   avformat_open_input(AVFormatContext **ps, const char *filename, AVInputFormat *fmt, AVDictionary **options)
    */
    int openInputValue = avformat_open_input(&pFormatCtx, utf8FilePath, inputFormat, nil);
    NSLog(@"%s - %d # openInputValue = %d", __PRETTY_FUNCTION__, __LINE__, openInputValue);

    I currently have this code in a function which takes NSData holding the FLAC file. If avformat_open_input is the correct call, how do I set the variable ? If it is not the correct call, what is ?

    This question seems like a duplicate but it doesn’t really have a good answer.

    Also note that I don’t want a player. This file contains MQA so I need to run it through my own custom decoder.

  • ffmpeg, creating thumbnail, but getting "deprecated pixel format used"

    20 septembre 2016, par Andre M

    I am trying to create thumbnails from my videos with ffmpeg, but I get the error "deprecated pixel format used, make sure you did set range correctly", along with "Using AVStream.codec to pass codec parameters to muxers is deprecated, use AVStream.codecpar instead.". I had a look around, but not sure what the new correct way of doing things is.

    Currently my command-line call looks as follows :

    infile=myfile.mp4
    outfile=myfile.jpg
    position=0
    ffmpeg -ss ${position} -i "${infile}" -f image2 -vframes 1 -y "${outfile}"

    I also tried (scales to 144px height) :

    ffmpeg -ss $position -i "${infile}" -y -filter_complex \    
     scale"=w=trunc(oh*a/2)*2:h=144[size0];[size0]split=1[screen0]" \
     -vframes 1 -map [screen0] "${outfile}"

    Note : Using ffmpeg 3.1.3, via MacPorts, on MacOS X 10.11.6

  • How to concatenate multiple videos to form a single video using ffmpeg [migrated]

    14 mars 2014, par M. Usman Afzal

    Really good post so far, I want to ask few questions.

    1. How to concatenate multiple videos to form a single video ?
    2. How to loop the video until the audio has not stopped ?

    Note : I have a different audio and video files.