
Recherche avancée
Autres articles (67)
-
La file d’attente de SPIPmotion
28 novembre 2010, parUne file d’attente stockée dans la base de donnée
Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...) -
Support audio et vidéo HTML5
10 avril 2011MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...) -
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...)
Sur d’autres sites (7563)
-
Flutter Ffmpeg video compress error No such file or directory, but file exists
29 octobre 2020, par fffIn 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-BadryI 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 mrlonelyI 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.