Recherche avancée

Médias (1)

Mot : - Tags -/berlin

Autres articles (77)

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

  • ffmpeg command not working with Windows XP when files have spaces

    25 février 2014, par user1665130

    I have a wpf application program for video audio merging using a command line tool ffmpeg.
    I can successfully merge files in Windows 7. But when I try to run my program on Windows XP it shows errors.

    Here I include my command line code.

    ffmpeg -i C:\Users\vishnu.aravind\Desktop\SUNP.AVI -i C:\Users\vishnu.aravind\Desktop\Alarm03.wav -c:v copy -c:a aac -strict experimental C:\Users\vishnu.aravind\Desktop\ Vishnu Aravind\new.avi

    I made some research on this and i find out that if the input filenames and output filenames contain extra spaces in them, normally ffmpeg won't take it. Suppose if I edit my above code to

    ffmpeg -i C:\Users\vishnu.aravind\Desktop\SUNP.AVI -i C:\Users\vishnu.aravind\Desktop\Alarm03.wav -c:v copy -c:a aac -strict experimental C:\Users\vishnu.aravind\Desktop\VishnuAravind\new.avi

    this will successfully execute.

    How to solve if I want the output to be saved to a folder whose folder name contains an extra space ?

  • Streaming flv video via avserver

    26 février 2014, par Yuvraj Kakkar

    While streaming flv file to avserver.
    Steps followed are :-
    1. Configured avserver by command on ubuntu terminal.
    * gedit /etc/avserver.conf
    * Added the content as below :-

    <feed>
    File            /tmp/live1.ffm
    FileMaxSize     1G
    </feed>

    <stream>      
      Feed live1.ffm            
       Format flv
       VideoCodec libx264
       VideoFrameRate 30
       VideoBitRate 800
       VideoSize 720x576  
       AVOptionVideo crf 23
       AVOptionVideo preset medium
       AVOptionVideo me_range 16
       AVOptionVideo qdiff 4
       AVOptionVideo qmin 10
       AVOptionVideo qmax 51
       AVOptionVideo flags +global_header
       AudioCodec aac
       Strict -2
       AudioBitRate 128
       AudioChannels 2
       AudioSampleRate 22050
       AVOptionAudio
    flags +global_header
    </stream>

    2. Stream flv file to live1.ffm using avconv tool by following command -

    avconv -i /home/Videos/abc.flv  http://127.0.0.1:8090/live1.ffm

    3.Play live.flv stream via avplay tool .

    avplay http://127.0.0.1:8090/live.flv

    But at 3rd step getting error

    [flv @ 0x7f9b840008c0] decoding for stream 0 failed
    [flv @ 0x7f9b840008c0] Estimating duration from bitrate, this may be inaccurate
    http://127.0.0.1:8090/live.flv: could not find codec parameters

    4.I tried to download flv video via url http://127.0.0.1:8090/live.flv.It gets downloaded with 0 bytes and gives error - Error stream contains no data.

    Kindly provide suggestion on this. Thanks in advance.

  • qt-faststart : Simplify code by using a MIN() macro

    30 septembre 2012, par Michael Niedermayer
    qt-faststart : Simplify code by using a MIN() macro
    

    qt-faststart doesn’t use the normal libav headers at all since
    it’s supposed to be a completely standalone tool, so we implement
    the macro locally in this file.

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DBH] tools/qt-faststart.c