Recherche avancée

Médias (0)

Mot : - Tags -/presse-papier

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

Autres articles (54)

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

  • What function in ffmpeg source to join 2 file mp3 to one file mp3 ? [on hold]

    19 juillet 2018, par Nam

    I have a trouble that how I can make a function on C file that help me join two audio file to one. But i can not find how I using what function in ffmpeg source. I want build .so file to use on android.
    Help me please !

  • avformat/hlsenc : write temp file for append single file by encryption mode

    22 juillet 2020, par Steven Liu
    avformat/hlsenc : write temp file for append single file by encryption mode
    

    fix ticket : 8783
    Because in single file by encryption mode, it cannot get the last one
    block of the file, it need ff_format_io_close for get full file size,
    then hlsenc can get the total size of the encryption content,
    so write the content into temp file first, and get the temp file content
    append the temp file content into append to single file, then hlsenc can
    get the correct file/content size and offset.

    Signed-off-by : Steven Liu <liuqi05@kuaishou.com>

    • [DH] libavformat/hlsenc.c
  • Output file names with spaces to file without quotes in batch

    13 mai 2020, par user245115

    So, I wrote a script as a batch file that uses FFmpeg to "concat" several video files on my hard drive.&#xA;The script is as follows.

    &#xA;&#xA;

    @echo off&#xA;title Printing video info...&#xA;(for %%i in (&#xA;"%USERPROFILE%"/Dropbox/Video1.MKV&#xA;"%USERPROFILE%"/Dropbox/Video2.MKV&#xA;S:/Exports/Video3.MKV&#xA;../../video/Video4.mkv&#xA;) do ( if exist "%%i" echo file &#x27;%%i&#x27; )) > "%~n0.txt"&#xA;type "%~n0.txt"&#xA;title Copying to compiled video...&#xA;"C:\Program Files\ffmpeg\bin\ffmpeg.exe" -hide_banner -f concat^&#xA;                  -safe 0 -y -i "%~n0.txt" -c copy "%~n0.mkv"&#xA;

    &#xA;&#xA;

    The problem here is the username on the computer has a space in the name, so the script doesn't work. If I put the quotes with %USERPROFILE%, then the file is detected by the batch script, but the batch script also puts the quotes into the output TXT file, which causes FFmpeg to fail when it hits that file.

    &#xA;&#xA;

    The contents of the text file the script outputs to should be :

    &#xA;&#xA;

    file &#x27;C:\Users\Name/Dropbox/Video1.MKV&#x27;&#xA;file &#x27;C:\Users\Name/Dropbox/Video2.MKV&#x27;&#xA;file &#x27;S:/Exports/Video3.MKV&#x27;&#xA;file &#x27;../../video/Video4.mkv&#x27;&#xA;

    &#xA;