Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP 0.2

Autres articles (53)

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

  • ffprobe - getting file info from pipe

    29 mai 2013, par Andrewshkovskii

    I've got an oog file (it was mixed by sox from two audiostreams recorded by pbx Asterisk) and i'am trying to get file information with ffprobe.
    When i'am using something like

    cat %filename%.ogg | ffrobe -i -

    I've got invalid file info (Duration : N/A, wrong bitrate and etc.)
    But when i'am trying to

    ffprobe -i %filename%

    Everything works fine and i get file info.
    What can be wrong ? File content ?

  • FFMPEG audio filter/settings to crossfade but with only the first file becoming quiet

    24 janvier 2019, par howcountrywidefield

    I have two audio files that I want to concatenate, while crossfading between them at 3 seconds offset. But I do not want a traditional crossfade with the first file getting quiet while simultaniously the second file gets louder, which I know could be achieved with the acrossfade filter, but rather I want only the first file getting quieter, while the second file should start at 100% loudness right away.

    I have an idea for a step-by-step procedure where I would

    1. strip away the last 3 seconds of the first file into a temporary file

    2. strip away the first 3 seconds of the second file into a temporary file

    3. apply a afade=out filter to the first temporary file

    4. merge the two temporary files together

    5. concatenate the first file, the merged file, and the second file

    all using seperate ffmpeg commands

    I guess this would do the trick, but it would be very error-prone I guess, and I was wondering if there was a way to do all I want to achieve with just one command.

  • Can't get ffmpeg to generate an MP4 file on iOS

    7 avril 2017, par user92238

    I’m having serious problems trying to get an iOS app to create an MP4 file from an RTSP stream using ffmpeg.

    I can open the stream, decode it, show the video on screen and play the live audio without any issues. The problems arise when I try to output the AV stream to a file.

    If I ask ffmpeg to create an MP4 file, it fails, informing me that the audio codec in the stream is incompatible with MP4 files. If I attempt to transcode the audio into acc, then ffmpeg lets me continue, but during the file output I get multiple "aac bitstream error" messages, and the recording is silent.

    I also tried having ffmpeg create a mov (Quicktime) file instead of MP4. If I do that, it seems to work : I get a mov file that plays back with audio. That being done, I tried to transcode the mov file to mp4 using AVAssetExportSession. But this doesn’t work : it reports that the decode failed.

    I’m not sure what to try next.