Recherche avancée

Médias (0)

Mot : - Tags -/albums

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

Autres articles (48)

  • 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 ;

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

  • Contribute to translation

    13 avril 2011

    You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
    To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
    MediaSPIP is currently available in French and English (...)

Sur d’autres sites (6259)

  • avcodec/av1 : extend some definitions in spec section 3

    12 octobre 2021, par Fei Wang
    avcodec/av1 : extend some definitions in spec section 3
    

    Signed-off-by : Fei Wang <fei.w.wang@intel.com>

    • [DH] libavcodec/av1.h
  • FFMPEG - Automatic Stream Copy Then Encode On Fail

    18 mars 2017, par Waverunner

    I’ve embarked on a mission to get rid of all of my MKV files since the MP4 container works better for me. So to that end, I did some research and wrote a small script that searches my data files for MKVs and stream copies them to MP4. The script works most of the time, but I get the occasional file that fails and since the script deletes the originals, I lose the file completely.

    I’d like to modify the script in two ways :

    (1) Before deleting the original file, check that the converted file is greater than zero.

    (2) If the converted file is zero (failed) then run an FFMPEG command to re-encode the original file using default values utilizing Intel Quick Sync hardware encoding, then delete the original as usual and go on to the next file in the list.

    Here’s what I have so far...

    @ECHO OFF
    cls
    echo This script automatically converts MKV video files to MP4.
    echo.
    echo Changing directory to data drive (Z:).
    echo.
    Z:
    echo Retrieving list of MKV files...
    echo.
    dir /b /s *.mkv > MKV-Files.txt
    echo MKV list compiled.
    echo.
    echo Converting files to MP4...
    echo.
    FOR /F "delims=;" %%F in (MKV-Files.txt) DO (
    echo Converting "%%F"
    echo.
    C:\FFMPEG\bin\ffmpeg.exe -y -i "%%F" -movflags faststart -codec copy "%%~dF%  %~pF%%~nF.mp4"
    echo.
    echo Conversion successful.
    echo.
    echo Deleting "%%F"
    echo.
    del "%%F" /F
    )
    echo Job completed.
    echo.
    echo Exiting...

    Thanks in advance for your ideas.

  • vf_hwupload : Add missing return value check

    3 mars 2017, par Jun Zhao
    vf_hwupload : Add missing return value check
    

    Add missing return value checks to suppress build warning and
    remove noop ff_formats_unref() calling.

    Note : most filters using ff_formats_ref() didn’t have a suitable
    error handling, it’s a potential memory leak issue.

    Signed-off-by : Jun Zhao <jun.zhao@intel.com>
    Signed-off-by : Mark Thompson <sw@jkqxz.net>

    • [DH] libavfilter/vf_hwupload.c