Recherche avancée

Médias (0)

Mot : - Tags -/médias

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

Autres articles (87)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

Sur d’autres sites (9483)

  • Flutter Ffmpeg video compress error No such file or directory, but file exists

    29 octobre 2020, par fff

    In a Flutter project, I'm trying to compress a video using Ffmpeg (min-gpl) and, only in iOS, I get the error

    


    


    flutter : /var/mobile/Containers/Data/Application/6C20B1B1_compressed-D6BD-421B-98E3-21123BF15A04/Documents/videos/raw/VID_20201025_224514.mp4 : No such file or directory

    


    


    


    flutter : FFmpeg process exited with rc 1

    


    


    , but, if I do this, right before I run the ffmpeg command,

    


        print(File(videoPath).existsSync().toString());


    


    returns "true".

    


    int rc = new FlutterFFmpeg()
    .execute(
        "-loglevel error -y -i ${videoPath} -vcodec libx264 -vprofile high -preset veryfast -b:v 1000k -maxrate 1000k -bufsize 1000k -vf \"pad=ceil(iw/2) * 2:ceil(ih/2)*2\" -threads 1 -b:a 128k ${outputPath}")
    .catchError((err) => _onCompressError(outputPath, err));

debugPrint("FFmpeg process exited with rc $rc");


    


    I've done the integration using flutter-ffmpeg and there is indeed a video in that path. For the path I used path_provider.

    


    Thanks in advance

    


  • FFMPEG Performance of cutting remote file vs local file

    9 juillet 2019, par Mohamed Adel El-Badry

    I am trying to cut part of a video from a remote location. Is it better to download the files locally first before start cutting it or this is a bad method ?

    ffmpeg -i ’https://externalfile.mp4’ -ss 487 -t 39 -vcodec copy -acodec copy -copyinkf ’/home/clip/clip.mp4’

  • Only one .ts file is generating while encoding mp3 file to m3u8 using ffmpeg

    15 octobre 2019, par mrlonely

    I am not able to play m3u8 link for some specific files.

    Details are as follows :

    ffmpeg  -i low_30.mp3 -codec:v libx264 -b:v  64k -maxrate 64k -bufsize 64k -vf  scale=-2:480 -threads 0 -vsync 2 -pix_fmt yuv420p -codec:a aac -b:a  64k  -hls_list_size 0 abc.m3u8

    Error :

    [libx264 @ 0x7fc83280ba00] MB rate (81000000) > level limit (2073600)
    [libx264 @ 0x7fc83280ba00] using cpu capabilities: MMX2 SSE2Fast SSSE3 SSE4.2 AVX FMA3 AVX2 LZCNT BMI2
    [libx264 @ 0x7fc83280ba00] profile High 4:4:4 Predictive, level 5.2, 4:4:4 8-bit
    [hls @ 0x7fc832809e00] Using AVStream.codec to pass codec parameters to muxers is deprecated, use AVStream.codecpar instead.

    Sample File URL : https://s3-ap-southeast-1.amazonaws.com/hog-original/low_30.mp3

    Only one TS file is generating in this case and not able to play the m3u8 link.